Delete Access Token
This API deletes an existing access token identified by its unique ID. Once deleted, the access token can no longer be used to authenticate requests.
Endpoint Details
| URL | /v1/auth/access-tokens/id |
| Method | DELETE |
| Authorization | Bearer Token |
Request Headers
| Header | Type | Description |
|---|---|---|
| Content-Type | String | Must be application/json |
Request Path
To delete a specific access token, use the following request format:
/v1/auth/access-tokens/93dcf68f-8d23-4126-a300-d120018bb6c3
Path Parameter
| Parameter | Type | Description |
|---|---|---|
| id | UUID | Unique identifier of the access token to delete |
Response
Here is an example response after the request has been successfully processed:
Response
{
"success": true
}
Field Descriptions
| Field | Type | Description |
|---|---|---|
| success | Boolean | Indicates whether the access token was successfully deleted |
info
- A valid Bearer Token is required to access this endpoint.
- The
idpath parameter must reference an existing access token. - Deleting an access token is permanent and cannot be undone. Any client using its API key will no longer be able to authenticate.