# Revoke Token

`POST /oauth2/revoke`

Revoke OAuth 2.0 token

## Body Parameters

```typescript
interface BodyParameters {
  /** Token to revoke */
  token?: string;
  /** Token to revoke */
  access_token?: string;
  /** Hint about the type of token being revoked (access_token or refresh_token) */
  token_type_hint?: string;
  /** OAuth 2.0 client identifier */
  client_id?: string;
}
```

## Response Example

**Status:** `200 Token successfully revoked`


---
Original source: https://buddy.works/docs/api/oauth/revoke