Payouts

Initiate Bulk Bank Payout

Queue a bulk bank-transfer payout batch for asynchronous processing and later resolution.

POST
/api/v1/payout/bank-transfer/bulk

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/api/v1/payout/bank-transfer/bulk" \  -H "Content-Type: application/json" \  -d '{    "source_batch_id": "SRC_BATCH_001",    "currency": "NGN",    "payouts": [      {        "amount": 200,        "bank_code": "000000",        "bank_name": "Test Bank",        "account_number": "1234567890",        "account_name": "John Doe",        "source_reference": "SRC_PAYOUT_001"      }    ]  }'
Empty

How is this guide?