Skip to main content
GET
/
users
/
invitations
/
{token}
Verify invitation token
curl --request GET \
  --url http://localhost:3000/users/invitations/{token} \
  --header 'Authorization: Bearer <token>'
{
  "statusCode": 123,
  "message": "OK",
  "data": {
    "email": "<string>",
    "org_id": "<string>",
    "role": "<string>",
    "name": "<string>",
    "inviter_name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

token
string
required

Response

Default Response

statusCode
number
message
string
default:OK
data
object