Skip to content
OpenRelay is in early access, and the /v1 API is stable. New capabilities ship in the changelog.
Account

Pending org invites addressed to the signed-in user's email

Returns unexpired pending invites whose invited email matches the session's email. Requires a dashboard session token; API keys are org service accounts and cannot hold or accept invites.

GET
/v1/me/invites
AuthorizationBearer <token>

OpenRelay API key. Send it as Authorization: Bearer vl_….

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/me/invites"
[
  {
    "organizationId": "string",
    "organizationName": "string",
    "role": "string",
    "inviterEmail": "string",
    "invitedAt": "string",
    "expiresAt": "string"
  }
]
{
  "error": "string",
  "code": "string"
}