# Delete Token by Token ID

**Method:** `POST`

**Path:** `/api/v1/tokens/{token_id}/delete`

**Category:** Tokenization

**Authentication:** Required

## Description

Delete a service provider token by its token ID. This permanently deactivates
the token.


## Path Parameters

- `token_id` (`string`) **required** — Unique token ID to delete.

## Responses

- `200` — Token deleted successfully.
- `400` — 
- `401` — 
- `403` — 
- `404` — 
- `500` — 
- `503` — Service temporarily unavailable.

### Response Schema

- `token_id` (`string`) — Token ID that was deleted.
- `status` (`string`) — Token status after deletion.

### Example Response

```json
{
  "token_id": "token-v1-1234567890-aa-ABCDEF",
  "status": "DEACTIVATED"
}
```

---

Reference: https://localhost:3000/api/tokenization/delete-token-by-token-id
