Post Oauth 2 Introspect
Introspect an OAuth2 access or refresh token
Authentication
AuthorizationBearer
Bearer token authentication
Request
This endpoint expects an object.
token
The token to introspect (access or refresh token)
client_id
OAuth2 client ID
client_secret
OAuth2 client secret
token_type_hint
Hint about the token type. Recognized values: access_token, refresh_token.
Response
Token introspection response
active
Whether the token is active
scope
Scopes associated with the token
client_id
Client ID associated with the token
username
Username associated with the token
token_type
Type of the token
exp
Expiration time of the token (seconds since epoch)
iat
Issued at time (seconds since epoch)
nbf
Not before time (seconds since epoch)
sub
Subject of the token
aud
Audience of the token
iss
Issuer of the token
jti
JWT ID
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
429
Too Many Requests Error
500
Internal Server Error