# Revoke authorization token

#### **Request:**

<table><thead><tr><th width="233">name</th><th>value</th></tr></thead><tbody><tr><td>url</td><td><code>https://dev.pulsoid.net/oauth2/revoke</code></td></tr><tr><td>method</td><td><code>POST</code></td></tr></tbody></table>

#### Body Parameters explained:

| Name  | Type   | Description           |
| ----- | ------ | --------------------- |
| token | string | Obtained access token |

**cURL Request Example:**

```bash
curl --request POST \
  --url https://dev.pulsoid.net/oauth2/revoke \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data token=ac902193-f705-4db6-8132-cb3243520734
```

**Response Example:**

`200 OK`
