Oauth
Token Revocation
Revoke a Refresh Token. Typically called on user logout.
POST
Revokes a Refresh Token, invalidating it immediately. Typically called when the user logs out.
Header parameters
Must be
application/x-www-form-urlencoded.Client credentials encoded in Base64:
Basic base64({CLIENT_ID}:{CLIENT_SECRET}).Body parameters
The Refresh Token to revoke.
Token type hint. Fixed value
refresh_token.Response
Returns200 OK on success. No response body.

