POST
/
oauth
/
revoke
curl https://api.thanxsandbox.com/oauth/revoke \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "${client_id}",
    "client_secret": "${client_secret}",
    "token": "${token}"
  }'
{}

Parameters

client_id
string
required
OAuth Client ID
client_secret
string
required
OAuth Client Secret
token
string
required
OAuth Access Token
curl https://api.thanxsandbox.com/oauth/revoke \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "${client_id}",
    "client_secret": "${client_secret}",
    "token": "${token}"
  }'
{}