logoOPEN BANKING DOCS

Process bulk transfer

Process multiple transfers in a single request

POST
/transactions/transfer/bulk
X-API-Key<token>

In: header

Header Parameters

X-API-Keystring

API key for the application

X-App-Idstring

UUID of the application

Formatuuid
transfersarray<TransferQuery>

List of transfers to process

Response Body

curl -X POST "https://virtual-accounts-api.vantacrest.com/company/v1/transactions/transfer/bulk" \  -H "X-API-Key: string" \  -H "X-App-Id: 497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{    "transfers": [      {        "fromAccountNumber": "string",        "toAccountNumber": "string",        "amount": 0.01,        "narration": "string"      }    ]  }'
{
  "data": {
    "batchId": "string",
    "totalTransfers": 0,
    "successfulTransfers": 0,
    "failedTransfers": 0,
    "transfers": [
      {
        "transactionId": "string",
        "reference": "string",
        "status": "PENDING",
        "amount": 0,
        "fee": 0,
        "fromAccount": "string",
        "toAccount": "string",
        "narration": "string",
        "createdAt": "2019-08-24T14:15:22Z"
      }
    ],
    "summary": {
      "totalAmount": 0,
      "totalFees": 0
    }
  }
}
{
  "success": true,
  "message": "string",
  "data": {},
  "timestamp": "2019-08-24T14:15:22Z"
}
{
  "success": true,
  "message": "string",
  "data": {},
  "timestamp": "2019-08-24T14:15:22Z"
}