> ## 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.

# トークンのアンバインド

> バインド済みのトークンを削除します。アンバインド後、そのトークンは決済に使用できなくなります。

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

## リクエストパラメータ

| パラメータ          | 型      | 必須 | 説明                      |
| -------------- | ------ | -- | ----------------------- |
| `merchantInfo` | Object | はい | 加盟店情報（`merchantId` を含む） |
| `tokenId`      | String | はい | アンバインドするトークン ID         |

## リクエスト例

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

## レスポンス例

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