v1
latestOpenAPI 3.0.12026-07-225791279.7 KBRefunds And Chargebacks
Chargeback Transaction History
The merchant can use this endpoint to fetch all chargeback transactions.
get/refund-chargeback/chargeback/merchant/api/chargeback_transaction_history
Query parameters
transaction_referencestring
The unique identifier given to a particular transaction
fromstring date
The start date range to filter data in YYYY-MM-DD format
tostring date
The end date range to filter data in YYYY-MM-DD format
pagestring required
The page number
sizeinteger required
Number of items per page
Response
Chargeback Request Response
Example response
{
"status": "success",
"message": "Chargeback History Success",
"data": {
"content": [
{
"id": 39,
"rrn": "401012220020",
"transaction_reference": "PL1KBPSCJCRD60143",
"reason_message": "fraudulent transaction",
"approval_code": "11111",
"chargeback_date": "2024-07-26",
"original_amt": "10.03",
"chargeback_status": "Accepted",
"accepted": true,
"chargeback_status_reason": "fraud",
"date_created": "2024-07-26 21:55:57.177028",
"merchant_display_name": "link"
}
],
"total": 1,
"first": true,
"last": true,
"pageable": {
"page": 1,
"size": 10
}
}
}