> ## 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.

# Batch Payout

> An api endpoint for retrieving a batch payout

This API retrieves the details of a specific batch payout using its unique batch payout UUID. The response provides
comprehensive information about the payout, including the total amount and a breakdown of transactions grouped by payee.

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

### Endpoint

GET **/3p/api/v2/batch-payouts/\{batch\_payout\_uuid}**

### Response

<CodeGroup>
  ```json Success (200) theme={"system"}
  {
      "status": true,
      "message": "",
      "data": {
          "total": 8900,
          "direction": "credit",
          "payee_id": [
              {
                  "payee_id": "0cda5458-660f-4f12-9447-e432da2f959c",
                  "total": 8900,
                  "transactions": [
                      {
                          "transaction_id": "9ccf5706-dff0-46c7-bf74-4e34dc998485",
                          "client_reference_id": "typesetting",
                          "amount": 4400
                      },
                      {
                          "transaction_id": "9ccf577a-921b-431a-9e35-80b7fde5e2bd",
                          "client_reference_id": "typesetting",
                          "amount": 4500
                      }
                  ]
              }
          ]
      },
      "errors": null,
      "error_code": null
  }
  ```
</CodeGroup>
