> ## 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 列表。

```
POST /api/v1/tokenization/inquiry
```

## 请求参数

| 参数               | 类型     | 必填 | 描述                    |
| ---------------- | ------ | -- | --------------------- |
| `merchantInfo`   | Object | 是  | 商户信息（包含 `merchantId`） |
| `merchantUserId` | String | 是  | 商户侧用户 ID              |

## 响应参数

返回用户已绑定的 Token 列表。

| 参数            | 类型     | 描述                              |
| ------------- | ------ | ------------------------------- |
| `tokenId`     | String | Token ID                        |
| `tokenType`   | String | Token 类型（`CARD`）                |
| `maskedPan`   | String | 掩码卡号（例如：`411111******1111`）     |
| `cardBrand`   | String | 卡组织/卡品牌（例如：`VISA`、`MASTERCARD`） |
| `expiryMonth` | String | 到期月份                            |
| `expiryYear`  | String | 到期年份                            |

## 响应示例

```json theme={null}
{
  "code": "0",
  "msg": "Success",
  "data": [
    {
      "tokenId": "tok_xxxxxxxxxxxx",
      "tokenType": "CARD",
      "maskedPan": "411111******1111",
      "cardBrand": "VISA",
      "expiryMonth": "12",
      "expiryYear": "2025"
    }
  ]
}
```
