Skip to main content
POST
/
protocol
/
openid-connect
/
revoke
Revoke Token
curl --request POST \
  --url https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/revoke \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data token= \
  --data client_id= \
  --data client_secret=
{
  "error": "invalid_client",
  "error_description": "Invalid client or Invalid client credentials"
}

Documentation Index

Fetch the complete documentation index at: https://docs.catenatelematics.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/x-www-form-urlencoded
token
string
required

The token to revoke.

Example:

""

client_id
string
required

Your client identifier.

Example:

""

client_secret
string<password>
required

Your client secret.

Example:

""

Response

Token successfully revoked (body may be empty).