Skip to main content

Bulk Transfer

Overview

This operation is used to perform a bulk transfer to accounts, cards or mobile from one source to different destination accounts in various banks. For Bulk Transfer, batch limit is 500 records per transaction batch (bulk items)

The following validation would be performed for the bulkTransfer Operation

  1. That the total amount is equal to the bulk items amount.
  2. The unique ids must be unique for the bulk items so avoid duplicates.
  3. The bulk reference must be unique.
  4. Validation of Company ID.
  5. If a mobile number is not on pocketmoni, it will be created automatically
POST / bulk-transfer
curl `${baseurl}/bulk-transfer`
-H "Content-type: application/json"
-X POST
-d '{
"action": "BT",
"terminalId": "7000000001",
"transaction": {
"companyId": "TestCompanyID",
"pin": "kghxqwveJ3eSQJip/cmaMQ==",
"amount": 15,
"reference": "{{$randomPhoneNumber}}",
"senderName": "Test Accounts",
"endPoint": "A",
"terminalCard": false,
"bulkItems": {
"bulkItem": [
{
"uniqueId": "BTTestBT04",
"bankCode": "011",
"accountId": "3028875212",
"beneficiaryName": "Peter Azuka",
"narration": "narration",
"amount": 5.0
},
{
"uniqueId": "BTTestBT05",
"bankCode": "033",
"accountId": "2125347370",
"beneficiaryName": "Peter Azuka",
"narration": "narration",
"amount": 5.0
},
{
"uniqueId": "BTTestBT06",
"bankCode": "058",
"accountId": "0129915440",
"beneficiaryName": "Peter Azuka",
"narration": "narration",
"amount": 5.0
}
]
}
}
}
'