Skip to main content
GET
/
v1
/
platforms
/
me
/
invitations
List invitations
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.keystoneos.xyz/v1/platforms/me/invitations', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "id": "<string>",
    "invitee_email": "<string>",
    "inviter_name": "<string>",
    "roles": [
      "<string>"
    ],
    "created_at": "<string>",
    "expires_at": "<string>",
    "invitation_url": "<string>"
  }
]

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Auth0 JWT access token. See Authentication for details.

Response

Successful Response

id
string
required
invitee_email
string
required
inviter_name
string
required
roles
string[]
required
created_at
required
expires_at
required
invitation_url
string | null