> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ach.netevia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Batch Refund

> Suggest Edits

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.

<Info>
  This route is secured with **processor** token authentication.
</Info>

### Endpoint

GET   **/3p/api/v2/batch-refunds/\{batch\_refund\_uuid}**

### Response

<CodeGroup>
  ```json Success (200) theme={"system"}
  {
      "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
  }
  ```
</CodeGroup>
