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

# Token unbinding

> Delete a bound Token. After unbinding, the Token can no longer be used for payments.

```
POST /api/v1/tokenization/remove
```

## Request parameters

| Parameter      | Type   | Required | Description                                  |
| -------------- | ------ | -------- | -------------------------------------------- |
| `merchantInfo` | Object | Yes      | Merchant information (includes `merchantId`) |
| `tokenId`      | String | Yes      | The Token ID to unbind                       |

## Request example

```json theme={null}
{
  "merchantInfo": { "merchantId": "M000001" },
  "tokenId": "tok_xxxxxxxxxxxx"
}
```

## Response example

```json theme={null}
{
  "code": "0",
  "msg": "Success",
  "data": null
}
```
