yes
12/18/2025, 12:13 PMVapi Support Bot
12/18/2025, 12:14 PMjs
const batches = chunkArray(recipients, 50);
for (const batch of batches) {
await createCampaign(batch); // Launch each batch one at a time
}
This should help you process all contacts efficiently without triggering server errors. For more details, see the [Outbound Campaigns Overview](https://docs.vapi.ai/outbound-campaigns/overview).
Source:
- [Outbound campaigns overview](https://docs.vapi.ai/outbound-campaigns/overview)Chiranjeet Mishra
12/30/2025, 1:56 PMyes
01/01/2026, 10:11 PMChiranjeet Mishra
01/05/2026, 1:55 PMPOST /campaign. So the recommended approach to create bulk calling is by looping through all phone numbers and using the POST /call endpoint on each iteration.yes
01/06/2026, 3:31 PMChiranjeet Mishra
01/06/2026, 4:56 PMyes
01/07/2026, 10:23 AM