Query Auth List
GET /v1/vcc/open/authData
request
| Parameter | Type | Required | Description |
|---|---|---|---|
cardNumber | string | No | The cardNumber of your virtual credit card number. |
startDate | string | No | start time in the form of timestamp (accurate to MS, GMT + 8). |
endDate | string | No | end time in the form of timestamp (accurate to MS, GMT + 8). |
startPage | string | No | current page default is 1. |
row | string | Yes | The size of each page is 20 by default, the maximum is 100, and the minimum is 1. If it is out of range, it will be scored as 20. |
response
| Parameter | Type | Required | Description |
|---|---|---|---|
authorizationId | string | Yes | Unique identification of authorized transaction. |
authorizationDate | string | Yes | Authorization date (format yyyy MM DD HH: mm). |
cardNumber | string | Yes | The cardNumber of your virtual credit card number. |
merchantName | string | Yes | Merchant name. |
billingAmount | string | Yes | billingAmount. |
billingCurrency | string | Yes | billingCurrency. |
authorizationType | String | Yes | Authorized transaction type. |
authorizationStatus | String | Yes | Authorized transaction status. Possible status APPROVED、DECLINED |
failReason | String | No | failReason. Possible reason INVALID_CVC INVALID_EXPIRATION_DATE、INSUFFICIENT_FUNDS、EXPIRED_CARD、REASON_UNKNOWN |
[{
"authorizationDate": "2020-05-30 18:40",
"authorizationId": "xxxxxx",
"cardNumber": "xxxxxx",
"merchantName": "xxxxxxx",
"billingAmount": "15.00",
"billingCurrency": "USD",
"authorizationType": "Auth",
"authorizationStatus": "APPROVED",
"failReason": ""
}]
query authorized transaction list
