メインコンテンツへスキップ

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

リクエストパラメータ

パラメータ必須説明
merchantInfoObjectはい加盟店情報(merchantId を含む)
merchantUserIdStringはい加盟店側のユーザー ID

レスポンスパラメータ

ユーザーが既にバインド済みのトークン一覧を返します。
パラメータ説明
tokenIdStringトークン ID
tokenTypeStringトークン種別(CARD
maskedPanStringマスクされたカード番号(例:411111******1111
cardBrandStringカードブランド(例:VISAMASTERCARD
expiryMonthString有効期限(月)
expiryYearString有効期限(年)

レスポンス例

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