Refund Query
Batch Refund Query
Request URL: GET
/search/list/refund
Request Parameters
Note:
At least one query condition is requiredIf the query condition is time, the range cannot exceed one month
| Parameter | Type | Required | Description |
|---|---|---|---|
uniqueId | String(128) | Optional | System transaction ID |
transactionId | String(128) | Optional | Merchant transaction request ID |
refundTransactionId | String(128) | Optional | Refund ID requested by the merchant |
refundUniqueId | String(128) | Optional | System unique refund ID returned by refund |
startDate | String(32) | Required | Transaction query start time, format (2025-01-01/2025-01-01 00:00:00) |
endingDate | String(32) | Required | Transaction query end time, format (2025-01-01/2025-01-01 00:00:00) |
currPage | Number(20) | Optional | See Pagination Details |
pageSize | Number(3) | Optional | See Pagination Details |
Request Example
https://domain/search/list/refund?startDate=2025-02-01&endingDate=2025-02-16&currPage=1Response Example
For Refund Parameter Details in 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
},
{
......
}
]
}