> ## 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 解绑

> 删除已绑定的 Token，解绑后该 Token 不能再用于支付。

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

## 请求参数

| 参数             | 类型     | 必填 | 说明                   |
| -------------- | ------ | -- | -------------------- |
| `merchantInfo` | Object | 是  | 商户信息（含 `merchantId`） |
| `tokenId`      | String | 是  | 要解绑的 Token ID        |

## 请求示例

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

## 响应示例

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