交易流水查询接口
Endpoint
POST {BASE_URL}/api/v2.0/payments/transactions
查询指定日期的全部交易流水,包括当前商户所有接口(含非网关接口)支付通道的付款、退款(不含清算信息)
注意: 一笔支付订单或退款订单均可能对应多条流水记录。
交易流水查询Request Body
{ "date": "string", "page": 1, "pageLimit": 10, "transactionType": "All" }
交易流水查询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" } }