Fetch List By Batch Reference

These endpoints enable fetching a paginated list of single transfers (bank and inter-merchant transfers) contained in the batch.

Fetching List With Batch Reference

get
Authorizations
Path parameters
batch_referencestringRequired
Query parameters
searchstringOptional

Search parameter to use while filtering the list

pageinteger · int32Optional

The target page to retrieve if available. Minimum value is 1.

page_sizeinteger · int32Optional

Required page size. Acceptable range is from 1 to 100.

Responses
200
Success
application/json
get
GET /v1/transfers/batch/{batch_reference}/transfers HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

Success

{
  "status": "success",
  "message": "text",
  "data": [
    {
      "id": "text",
      "is_live": true,
      "wallet_account_tags": [
        {
          "account_tag": "text",
          "amount": 1,
          "description": "text",
          "metadata": "text"
        }
      ],
      "account_name": "text",
      "account_number": "text",
      "bank_name": "text",
      "bank_code": "text",
      "destination_gateway_code": "text",
      "destination_gateway_merchant_id": "text",
      "destination_gateway_merchant_name": "text",
      "session_id": "text",
      "reference": "text",
      "batch_reference": "text",
      "beneficiary_id": "text",
      "country": "text",
      "currency": "text",
      "amount": 1,
      "transfer_fee": 1,
      "description": "text",
      "status": "successful",
      "failed_batch_validation": true,
      "failure_reason": "text",
      "transfer_type": "bank",
      "created_at": "2025-07-05T17:51:06.405Z",
      "edited_at": "2025-07-05T17:51:06.405Z",
      "paid_at": "2025-07-05T17:51:06.405Z"
    }
  ],
  "meta": {
    "page_meta": {
      "page_count": 1,
      "item_count": 1,
      "search": "text",
      "page": 1,
      "page_size": 1
    }
  },
  "errors": {
    "ANY_ADDITIONAL_PROPERTY": [
      "text"
    ]
  },
  "is_error": true
}

Last updated