Skip to main content
POST
/
invitations
/
details
Get Invitation Details
curl --request POST \
  --url https://api.example.com/invitations/details \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>"
}
'
{
  "organization_name": "<string>",
  "role": "viewer"
}

Body

application/json

Request model for invite token operations.

token
string
required

Invite link token

Response

Successful Response

Response for POST /invitations/details.

organization_name
string
required

Organization name

role
enum<string>
required

Role granted by this link

Available options:
viewer,
editor