curl --request POST \
--url https://api.example.com/api/v1/oauth/revoke \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'token=<string>' \
--data 'token_type_hint=<string>'{
"error": "invalid_request",
"error_description": "<string>",
"error_uri": "<string>"
}Token revocation endpoint (RFC 7009). Always returns 200 per spec. Requires client credentials via HTTP Basic auth.
curl --request POST \
--url https://api.example.com/api/v1/oauth/revoke \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'token=<string>' \
--data 'token_type_hint=<string>'{
"error": "invalid_request",
"error_description": "<string>",
"error_uri": "<string>"
}