cURL
revoke_access_token
curl --request POST \ --url https://sandbox.tight.com/v6/auth/revoke \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data token=eyJhbGciOiJSUzI1NiJ9... \ --data token_type_hint=access_token
Revoke an access token or refresh token, rendering it immediately invalid
HTTP Basic authentication using client_id:client_secret
client_id:client_secret
The access token or refresh token to revoke.
Optional hint about the type of token being revoked. Helps the server optimize the lookup.
access_token
refresh_token
Token revoked successfully (or token was already invalid)