Skip to main content

K3K Controller Internal API (1)

Download OpenAPI specification:Download

Specifies the endpoints and structure of the K3K Controller Internal API

Introspection

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

Content type
application/json
{
  • "token": "string",
  • "token_type_hint": "refresh_token"
}

Response samples

Content type
application/json
{
  • "active": true,
  • "sub": "string"
}