Skip to content

Get invitation details (public, no auth)

GET
/invitations/{token}

Returns public details about an invitation using its token. No authentication required. Used to display invitation info before the invitee accepts. Returns an error if the invitation has already been accepted or has expired.

token
required
string

Invitation token

Invitation details

Public invitation details (shown to invitee before accepting).

object
email
required
string
expires_at
required
string format: date-time
role
required
string
tenant_name
required
string
Example
{
"email": "[email protected]",
"expires_at": "2025-01-22T10:30:00Z",
"role": "member",
"tenant_name": "acme-corp"
}

Invitation already accepted or expired

Invitation not found

Server error