curl --request POST \
--url https://api.flutterwave.com/v3/bulk-bills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"bulk_reference": "bulkRef0012",
"callback_url": "https://www.google.com",
"bulk_data": [
{
"country": "NG",
"customer": "+2348029494025",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef05"
},
{
"country": "NG",
"customer": "+2347063932728",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef06"
},
{
"country": "NG",
"customer": "+2347013431382",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef07"
},
{
"country": "NG",
"customer": "+2348134088426",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef08"
}
]
}
'{
"status": "success",
"message": "Bulk bill Payment was queued for processing",
"data": {
"batch_reference": "CF-BATCH-FLY-API-20200310042210201008"
}
}Initiate bulk bills payment
curl --request POST \
--url https://api.flutterwave.com/v3/bulk-bills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"bulk_reference": "bulkRef0012",
"callback_url": "https://www.google.com",
"bulk_data": [
{
"country": "NG",
"customer": "+2348029494025",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef05"
},
{
"country": "NG",
"customer": "+2347063932728",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef06"
},
{
"country": "NG",
"customer": "+2347013431382",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef07"
},
{
"country": "NG",
"customer": "+2348134088426",
"amount": 100,
"recurrence": "WEEKLY",
"type": "AIRTIME",
"reference": "billRef08"
}
]
}
'{
"status": "success",
"message": "Bulk bill Payment was queued for processing",
"data": {
"batch_reference": "CF-BATCH-FLY-API-20200310042210201008"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?