v1
latestOpenAPI 3.0.3Apache 2.02026-07-175068227.4 KBoAuth2
Introspect OAuth2 Access and Refresh Tokens
The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting session.access_token during the consent flow.
post/admin/oauth2/introspect
Response
introspectedOAuth2Token
Example response
{
"ext": {
"key": ""
},
"sub": "sub",
"iss": "iss",
"active": true,
"obfuscated_subject": "obfuscated_subject",
"token_type": "token_type",
"client_id": "client_id",
"aud": [
"aud",
"aud"
],
"nbf": 1,
"token_use": "token_use",
"scope": "scope",
"exp": 0,
"iat": 6,
"username": "username"
}