> ## 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/inquiry
```

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

| パラメータ            | 型      | 必須 | 説明                      |
| ---------------- | ------ | -- | ----------------------- |
| `merchantInfo`   | Object | はい | 加盟店情報（`merchantId` を含む） |
| `merchantUserId` | String | はい | 加盟店側のユーザー ID            |

## レスポンスパラメータ

ユーザーが既にバインド済みのトークン一覧を返します。

| パラメータ         | 型      | 説明                                |
| ------------- | ------ | --------------------------------- |
| `tokenId`     | String | トークン ID                           |
| `tokenType`   | String | トークン種別（`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"
    }
  ]
}
```
