Numero Documentation
  1. Transfers & Payouts
Numero Documentation
  • Overview
  • Transfers & Payouts
    • Validate Account Number
      POST
    • Initiate Single Transfer
      POST
    • Initiate Bulk Transfer
      POST
    • Transfer Status
      GET
  • Virtual Accounts
    • Create Virtual Account Customer
      POST
    • Create Virtual Account Business
      POST
    • Get Virtual Account
      GET
    • Get All Virtual Accounts
      GET
  • Transaction History
    • Get Transactions
      GET
  • Webhooks & Security
    • Webhook Notifications
    • Generate Signature
      POST
  1. Transfers & Payouts

Initiate Bulk Transfer

POST
/api/v1/business/bulk

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Initiate Bulk Transfer
text/plain
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-dev.usenumero.com/api/v1/business/bulk' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-signature-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "transferRequest": [
    {
      "narration": "string",
      "amount": 0,
      "destinationAccountNumber": "string",
      "destinationBankCode": "string",
      "destinationAccountName": "string"
    }
  ],
  "phoneNumber": "string"
}'
Response Response Example
{
  "status": true,
  "message": "string",
  "code": "string",
  "version": "string",
  "reference": "string",
  "data": {
    "transferReference": [
      "string"
    ]
  },
  "error": {
    "message": "string"
  }
}
Modified at 2025-11-29 15:24:58
Previous
Initiate Single Transfer
Next
Transfer Status
Built with