Skip to main content
POST
/
v6
/
auth
/
revoke
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

Authorizations

Authorization
string
header
required

HTTP Basic authentication using client_id:client_secret

Body

application/x-www-form-urlencoded
token
string
required

The access token or refresh token to revoke.

token_type_hint
enum<string>

Optional hint about the type of token being revoked. Helps the server optimize the lookup.

Available options:
access_token,
refresh_token

Response

200

Token revoked successfully (or token was already invalid)