Skip to main content
POST
/
api
/
public
/
v1
/
oauth
/
revoke
OAuth 2.0 Token Revocation (RFC 7009)
curl --request POST \
  --url https://api.flexslot.gg/api/public/v1/oauth/revoke \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'token=<string>' \
  --data 'token_type_hint=<string>' \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "error": "<string>",
  "error_description": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.flexslot.gg/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.

Minimum string length: 1
token_type_hint
string

Optional advisory hint: 'access_token' or 'refresh_token'.

Minimum string length: 1
client_id
string
Minimum string length: 1
client_secret
string
Minimum string length: 1

Response

Revocation accepted. Empty body.