GET
/
invitations
/
{invitation_id}
Get a Member Invitation
curl --request GET \
  --url https://{tenantDomain}/my-org/invitations/{invitation_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "oui_12345678abcdefgh",
  "organization_id": "org_12345678abcdefgh",
  "inviter": {
    "name": "Allison the Admin"
  },
  "invitee": {
    "email": "user@example.com"
  },
  "client_id": "string",
  "connection_id": "con_2CZPv6IY0gWzDaQJ",
  "created_at": "2025-04-11T20:11:45.431Z",
  "expires_at": "2025-04-11T20:11:45.431Z",
  "roles": [
    "string"
  ],
  "invitation_url": "<<initiate_login_url>>?invitation=<invite ID>&organization=org_123234",
  "ticket_id": "1asdfasd23usjdef"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

invitation_id
string
required

Member Invitation identifier.

Response

200
application/json

Get Member Invitation for an Organization by Id.

The response is of type object.