Skip to main content
GET
/
invites
Get invites for the current user
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/invites \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "invites": [
    {
      "organizationId": "95b11417-f18f-457f-8804-68e361f9164f",
      "organizationName": "<string>",
      "status": "pending",
      "id": "95b11417-f18f-457f-8804-68e361f9164f",
      "email": "[email protected]",
      "alias": "<string>",
      "walletPublicKey": "<string>",
      "role": "owner",
      "createdByEmail": "[email protected]"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.dynamic.xyz/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Query Parameters

status
enum<string>
required

Invite status filter — only "pending" is allowed for security (other statuses require admin access)

Available options:
pending,
rejected,
accepted

Response

List of invites by query params

count
integer

Total number of invites matching the query

invites
object[]

List of invite objects