Get Batch Refund
This API retrieves the details of a specific batch refund using its unique batch refund UUID. The response provides comprehensive information about the refund, including the total amount and the associated transactions.
Authentication RouteThis route is secured with processor token authentication.
Endpoint
/3p/api/v2/batch-refunds/{batch_refund_uuid}
Response
{
"status": true,
"message": "",
"data": {
"total": 700,
"refund_uuid": [
{
"refund_uuid": "9d1878f4-f199-4f10-91af-90222f769190",
"transaction_uuid": "9d185d96-6cc5-4a75-aec2-d51a893cb0c6",
"amount": 300,
"client_reference_id": "refund",
"capture_delay_days": 1,
"payout_delay_days": 0
},
{
"refund_uuid": "9d1878bd-a0e6-4588-a1e5-1c07bd30e25c",
"transaction_uuid": "9d185d96-6cc5-4a75-aec2-d51a893cb0c6",
"amount": 300,
"client_reference_id": "refund",
"capture_delay_days": 1,
"payout_delay_days": 0
},
{
"refund_uuid": "9d18791b-1de5-43e1-a79d-868bde5f7a17",
"transaction_uuid": "9d185d96-6cc5-4a75-aec2-d51a893cb0c6",
"amount": 100,
"client_reference_id": "refund",
"capture_delay_days": 1,
"payout_delay_days": 0
}
]
},
"errors": null,
"error_code": null
}
Updated 2 months ago