Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Revocation

The revocation endpoint invalidates access tokens and refresh tokens per RFC 7009.

POST/oauth2/revokeNo Auth

Revokes an access token or refresh token. Always returns 200 even if the token is invalid (per RFC 7009).

ParameterTypeDescription
token*
body
stringThe token to revoke
token_type_hint
body
string"access_token" or "refresh_token"
client_id*
body
stringThe OAuth client ID
client_secret*
body
stringThe OAuth client secret
Request
token=eyJhbGciOiJSUzI1NiIs...&token_type_hint=access_token&client_id=my-client&client_secret=secret
Response
{}