Token
The Introspection OAuth 2 Endpoint.
The Introspection OAuth 2 Endpoint.
get/restv1/introspection
Query parameters
tokenstring required
token_type_hintstring
ID Token previously issued by the Authorization Server being passed as a hint about the End-User.
response_as_jwtboolean
OPTIONAL. Boolean value with default value false. If true, returns introspection response as JWT (signed based on client configuration used for authentication to Introspection Endpoint).
Headers
Authorizationstring required
Client Authorization details that contains the access token along with other details.
Response
OK
Example response
{
"active": true,
"scope": [
"read write dolphin"
],
"client_id": "1238j323ds-23ij4",
"username": "jdoe",
"token_type": "bearer, mac",
"sub": "Z5O3upPC88QrAjx00dis",
"aud": "https://protected.example.net/resource",
"iss": "https://server.example.com/"
}