Skip to content

Verify an inbox JWT and return the resolved identity

POST
/inbox/v1/tokens/verify
curl --request POST \
--url https://your-notavia-host/inbox/v1/tokens/verify \
--header 'Authorization: Bearer <token>'

Verified identity.

Media type application/json
object
external_user_id
string
organization_id
string format: uuid
environment_id
string format: uuid
Example generated
{
"external_user_id": "example",
"organization_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"environment_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
}

Missing or invalid credentials.

Media type application/json
object
error
required
object
type
required
string
code
required
string
message
required
string
param
string
nullable
Example generated
{
"error": {
"type": "example",
"code": "example",
"message": "example",
"param": "example"
}
}