K3K Controller Internal API (1)
Download OpenAPI specification:Download
Specifies the endpoints and structure of the K3K Controller Internal API
The introspection endpoint
Attempts to check the validity of an access or refresh_token.
Returns whether the token is valid and active.
Request Body schema: application/json
token required | string |
token_type_hint | string Enum: "refresh_token" "access_token" |
Responses
Request samples
- Payload
Content type
application/json
{- "token": "string",
- "token_type_hint": "refresh_token"
}
Response samples
- 200
Content type
application/json
{- "active": true,
- "sub": "string"
}