Appearance
退款查询
退款批量查询
请求地址:GET
/search/list/refund
请求参数
说明:
必须有一个查询条件如果查询条件为时间,范围不能超过一个月
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
uniqueId | String(128) | 选填 | 系统交易 ID |
transactionId | String(128) | 选填 | 商户交易请求 ID |
refundTransactionId | String(128) | 选填 | 退款商户请求的退款 ID |
refundUniqueId | String(128) | 选填 | 退款返回的系统唯一退款 ID |
startDate | String(32) | 必填 | 交易查询时间,开始时间格式(2025-01-01/2025-01-01 00:00:00) |
endingDate | String(32) | 必填 | 交易查询时间,结束时间格式(2025-01-01/2025-01-01 00:00:00) |
currPage | Number(20) | 选填 | 请查看分页详情 |
pageSize | Number(3) | 选填 | 请查看分页详情 |
请求实例
https://domain/search/list/refund?startDate=2025-02-01&endingDate=2025-02-16&currPage=1返回实例
data中订单参数详情
json
{
"code": 121,
"message": "Search success",
"timestamp": 1677825024053,
"currPage": 1,
"totalCount": 66,
"totalPage": 7,
"pageSize": 10,
"data": [
{
"code": 111,
"merchantRefundId": "1677823321",
"uniqueId": "1631534182100414466",
"refundUniqueId": "1631535378940026882",
"refundCurrency": "USD",
"refundAmount": "1.00",
"refundRequestAt": "2023-03-03 14:02:01",
"refundAt": "2023-03-03 14:02:01",
"message": "Refund successful",
"timestamp": 1677825024053
},
{
......
}
]
}