Admiral
Invitations

List invitations

GET
/v1/invitations

Scope: user:read

Authorization

bearerAuth
AuthorizationBearer <token>

Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer admp_...

In: header

Query Parameters

filter?filter

Filter expression to narrow results. Uses the Admiral filter DSL (see the API documentation for the full operator and predicate reference).

Filterable fields:

  • email: filter by address.
  • status: filter by lifecycle status.

Example: field['status'] = 'PENDING'

Lengthlength <= 1024
page_size?page_size

Maximum number of invitations to return per page. Defaults to 50 when omitted or 0; must not exceed 100.

Formatint32
Range0 <= value <= 100
page_token?page_token

Opaque pagination token from a previous response.

Response Body

application/json

curl -X GET "https://example.com/v1/invitations"
{  "invitations": [    {      "id": "string",      "email": "string",      "role": "USER_ROLE_UNSPECIFIED",      "status": "INVITATION_STATUS_UNSPECIFIED",      "invited_by": "string",      "created_at": "2023-01-15T01:30:15.01Z",      "expires_at": "2023-01-15T01:30:15.01Z",      "accepted_at": "2023-01-15T01:30:15.01Z",      "accepted_user_id": "string",      "revoked_at": "2023-01-15T01:30:15.01Z"    }  ],  "next_page_token": "string"}