Skip to main content
POST
https://api-dev-embedded.embedly.ng
/
embedded
/
api
/
v1
/
business
/
bulk-transfer
Business bulk transfer
curl --request POST \
  --url https://api-dev-embedded.embedly.ng/embedded/api/v1/business/bulk-transfer \
  --header 'Content-Type: application/json' \
  --data '
{
  "orgId": "<string>",
  "businessId": "<string>",
  "generalNarration": "<string>",
  "payouts": [
    {
      "accountName": "<string>",
      "accountNumber": "<string>",
      "bankCode": "<string>",
      "amount": 123,
      "narration": "<string>",
      "reference": "<string>"
    }
  ]
}
'
{
    "statusCode": 200,
    "status": "success",
    "data": {
        "message": "Bulk payout is being processed",
        "bulkBatchId": "a852e318-478d-420f-9fd1-63fa0cbf03f6"
    }
}

Business bulk transfer

orgId
string
required
The orgId of the Org initiating the transfer, Example: f7dfc5ab-4a4e-4941-8114-7a140d4c03b2
businessId
string
required
The unique identifier of the business initiating the transfer, Example: 63632ad2-cb9b-4ab4-acfa-d71510e3de25
generalNarration
string
required
The narration for the bulk transfer, Example: April Salary Payments
payouts
array
required
accountName
string
required
The name of the beneficiary account holder, **Example: Vivian Vixen
accountNumber
string
required
The beneficiary account number, Example: 8500014302
bankCode
string
required
The NIP institutional code of the beneficiary bank, Example: 000001
amount
number
required
The amount in Naira to be transferred, Example: 1000
narration
string
required
The narration for the transaction, Example: Funding
reference
string
required
The reference for the transaction, Example: 27348h2e223
{
    "statusCode": 200,
    "status": "success",
    "data": {
        "message": "Bulk payout is being processed",
        "bulkBatchId": "a852e318-478d-420f-9fd1-63fa0cbf03f6"
    }
}