> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thanx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Revoke Access Token

> Use this endpoint to revoke a user's access token.

### Parameters

<ParamField body="client_id" type="string" required>
  OAuth Client ID
</ParamField>

<ParamField body="client_secret" type="string" required>
  OAuth Client Secret
</ParamField>

<ParamField body="token" type="string" required>
  OAuth Access Token
</ParamField>

<RequestExample>
  ```bash theme={null}
  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}"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response Example theme={null}
  {}
  ```
</ResponseExample>
