04. Get customer payment tokens
Get all cards of customer
Path Parameters
uuid string required
Query Parameters
token_type string
Example: Gateway,AlipayAutoDebit,WechatPayAutoDebit
Responses
- 200
Response Headers
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
code number required
message string required
data object required
payment_tokens object[] required
token_type string required
Possible values: [CreditCard, WechatPayAutoDebit, AlipayAutoDebit]
token string required
state string required
verify_url string nullable
verify_uuid string required
default boolean required
默认卡
credit_card object
number string
exp_month string
exp_year string
holder_name string
brand string
billing_currency string
{
"code": 0,
"message": "string",
"data": {
"payment_tokens": [
{
"token_type": "CreditCard",
"token": "string",
"state": "string",
"verify_url": "string",
"verify_uuid": "string",
"default": true,
"credit_card": {
"number": "string",
"exp_month": "string",
"exp_year": "string",
"holder_name": "string",
"brand": "string",
"billing_currency": "string"
}
}
]
}
}
Loading...