03. Check customer payment token state
When you create a card, you need to wait until the card holder completes 3ds validation and you can call the Check API to check the validation status.
Header Parameters
Nonce string required
random 16 bytes alphanumerics
Credential string required
Please follow the OpenAPI authentication section
Example: d900da8b-6e16-4a85-8a66-05d29ac53f24/20240501120123/Wonder-RSA-SHA256
Signature string required
Please follow the OpenAPI authentication section
Example: good
Content-type string required
Example: application/json
x-request-id string
Example: {% mock 'uuid' %}
application/json
Request Body
payment_token object required
verify_uuid verify uuid required
token card token required
Responses
- 200
Response Headers
application/json
Schema
Example (from schema)
Schema
error_code string required
error_message string required
data object required
payment_token object required
token_type string required
Possible values: [CreditCard
, Alipay
, Wechatpay
]
token string required
state string required
verify_url string required
verify_uuid string required
credit_card object
number string required
exp_month string required
exp_year string required
holder_name string required
brand string required
{
"error_code": "string",
"error_message": "string",
"data": {
"payment_token": {
"token_type": "CreditCard",
"token": "string",
"state": "string",
"verify_url": "string",
"verify_uuid": "string",
"credit_card": {
"number": "string",
"exp_month": "string",
"exp_year": "string",
"holder_name": "string",
"brand": "string"
}
}
}
}
Loading...