GET
/
invitations
List Members Invitations
curl --request GET \
  --url https://{tenantDomain}/my-org/invitations \
  --header 'Authorization: Bearer <token>'
{
  "invitations": [
    {
      "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.

Response

200
application/json

List Members Invitations for an Organization.

The response is of type object.