Add Distributions to Batch

Last updated September 9th, 2025

post api.withmono.com/v3/payments/disburse/disbursements/{batch_id}/distributions
v1.0

This endpoint allows for adding distributions to an existing batch.

Path Params
Body Params
Headers

Request

1234567891011121314151617181920212223
curl --request POST \
  --url https://api.withmono.com/v3/payments/disburse/disbursements/{{BATCH_ID}}/distributions \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --header 'mono-sec-key: <YOUR_SECRET_KEY>' \
  --data '{
    "distribution": [
        {
            "recipient_email": "john.doe@example.com",
            "bank_code": "033",
            "narration": "August Salary",
            "account_number": "0123456789",
            "amount": 5000000
        },
        {
            "recipient_email": "jane.smith@example.com",
            "bank_code": "044",
            "narration": "Bonus Payment",
            "account_number": "9876543210",
            "amount": 2500000
        }
    ]
}'

Response

Choose an option from the drop down or click one of these buttons to see an example:

Did this page help you?