Skip to main content
GET
/
api
/
invitations
List Invitations
curl --request GET \
  --url https://api.example.com/api/invitations \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "email": "<string>",
      "name": "<string>",
      "roles": [],
      "invited_by": 123,
      "expires_at": "2023-11-07T05:31:56Z",
      "accepted_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string | null

Cookies

antidote_session
string | null

Response

Successful Response

data
UserInviteRead · object[]
required