Inspect token
Retrieve data about the token, such as scopes
, mode
, provider
, and if it is active
GET /2023-03-01/management/introspect
curl \
-X GET https://api.affixapi.com/2023-03-01/management/introspect \
-H "Authorization: $API_KEY"
Response examples (200)
{
"client_id": "00000000-00000000-00000000-00000000",
"mode": "xhr",
"provider": "sandbox",
"scopes": [
"identity",
"census"
]
}
Response examples (400)
{
"message": "string",
"validation_error": "string"
}
Response examples (403)
{
"message": "string"
}
Response examples (404)
{
"message": "string",
"id": "string"
}
Response examples (429)
# Headers
Retry-After: 42
# Payload
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}