Skip to main content
GET
/
transfers
/
bulk
/
{id}
/
transfers
cURL
curl --request GET \
  --url https://api.spotflow.co/api/v1/transfers/bulk/{id}/transfers \
  --header 'Authorization: Bearer <token>'
{
  "content": [
    {
      "reference": "c1fba25a-a36b-479c-b17d-64dbaf3ba32c",
      "spotflowreference": "c1fba25a-a36b-479c-b17d-64dbaf3ba32c",
      "amount": 0,
      "currency": "NGN",
      "transferMode": "7706438396",
      "destination": {
        "accountNumber": "7706438396",
        "accountName": "Quantum Technologies",
        "bankCode": "NGN100",
        "branchCode": "NGN100",
        "bankName": "Testbank MFB"
      },
      "narrations": "string",
      "status": "string"
    }
  ],
  "pageNumber": 1,
  "pageSize": 10,
  "totalElements": 100,
  "totalPages": 10
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

This is the specific id used to get the individual transfer details in the uploaded bulk disbursement file.

Query Parameters

page
integer<int32>
default:0

Page number for pagination (default is 0).

size
integer<int32>
default:10

Number of items per page for pagination (default is 10).

query
string
status
string
category
string
currency
string
from
string
to
string

Response

A JSON array of bulk disbursements objects.

content
object[]
pageNumber
integer
Example:

1

pageSize
integer
Example:

10

totalElements
integer
Example:

100

totalPages
integer
Example:

10