Refund list
GET/api/v1/refund?toDate=":toDate+"&fromDate=":fromDate+"&page=":page
To get the complete history of refund requests within a specified date range, including support for search and pagination
🔋 Sample request payload
{
"merchantCode": "842217"
}
🎯 Note: Payload must be encrypted before being sent to the server. To access the response data, decrypt it upon receiving the response from the server
⚡️ Payload details
Field Name | Description | Required |
---|---|---|
merchantCode | Pass the merchant code | ✅ Yes |
📌 Path parameters details
Fields Name | Description | Required |
---|---|---|
fromDate | Pass the start date YYYY-MM-DD | ✅ Yes |
toDate | Pass the end date YYYY-MM-DD | ✅ Yes |
page | Pass the pagination number, defalut is "1" | ✅ Yes |
search | Pass the search string | ⚠️ Optional |
Request
Responses
- 200
- 404
- 500
Refunds list successfully fetched, Decrypt the response from the server to see the final result
Refund list not found – The requested refund list does not exist or cannot be located
Internal Server Error – An unexpected error occurred on the server while processing the request. This may be due to a temporary issue or a server-side malfunction. Please try again later or contact support if the issue persists.