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 or_… (legacy vl_… keys still work).

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"  }]