Skip to main content
POST
/
transfers
/
bulk
/
validate
cURL
curl --request POST \
  --url https://api.spotflow.co/api/v1/transfers/bulk/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "file": "string"
}'
{
  "failedRequests": [],
  "totalRequests": 123
}

Request Body Parameters

Add a form-data with a key of “file” in the request body. In the value tab, upload a CSV file of your bulk transfer. Ensure all the required fields such as the amount, currency, bank_code, branch_code, account_number, account_name, and narration are present in your CSV file before uploading it.

Authorizations

Authorization
string
header
required

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

Body

application/json
file
file
required

Upload the file content and must in CSV format.

Response

A JSON array of create bulk disbursement objects.

failedRequests
any[]
totalRequests
number