Transaction Inquiry API
Endpoint
POST {BASE_URL}/api/v2.0/payments/transactions
Query all transaction records of a specified date, this includes payments and refunds(not including settlement) from all payment channels (including the Non-gateway transaction).
Note: One payment or refund order may correspond to multiple transaction records.
Transaction Inquiry Request Body
{
"date": "string",
"page": 1,
"pageLimit": 10,
"transactionType": "All"
}
Transaction Inquiry Response
{
"transactions": [
{
"requestId": "string",
"transactionId": "string",
"amount": "string",
"currency": "CAD",
"transactionType": "Credit",
"settleAmount": "string",
"settleCurrency": "CAD",
"exchangeRate": "string",
"paymentMethod": "Alipay",
"createTime": "2019-08-24T14:15:22Z",
"transactionTime": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"page": 0,
"pageLimit": 0,
"totalPage": 0,
"total": 0
},
"result": {
"resultCode": "string",
"resultMessage": "string",
"resultStatus": "S"
}
}