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.
Authorization
apiKey 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"
}Current user profile and org memberships GET
Returns the signed-in user's profile and organization memberships. Requires a dashboard session token; API keys cannot call this endpoint.
Accept a pending org invite (session only) POST
Creates the membership for the invite addressed to the session's email in the given org, then consumes the invite. This is the only way an invite becomes a membership: the invitee must be authenticated with the invited email and act explicitly.