curl --request POST \
--url https://api.example.com/invitations/accept \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"organization_id": "<string>",
"organization_name": "<string>",
"role": "<string>"
}Accept an invite link to join an organization.
The user’s email (from JWT claims) is checked against the allowlist if the organization is in restricted mode.
curl --request POST \
--url https://api.example.com/invitations/accept \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"organization_id": "<string>",
"organization_name": "<string>",
"role": "<string>"
}Request model for invite token operations.
Invite link token