raja
10/01/2025, 9:55 PMVapi Support Bot
10/01/2025, 9:56 PMjs
for (const customer of customers) {
await makeVapiCall(customer); // Wait for each call to complete before starting the next
}
This approach ensures that only one call is dialed at a time, matching your SIP trunk's single-channel limit. Adjust your batch logic to use await or similar mechanisms to prevent concurrent calls from being initiated simultaneously.
Reference: See Vapi's concurrency and queue management documentation for more details on handling call limits programmatically: [Vapi Call Queue Management](https://docs.vapi.ai/calls/call-queue-management).
Source:
- [Vapi Call Queue Management](https://docs.vapi.ai/calls/call-queue-management)raja
10/01/2025, 9:57 PMChiranjeet Mishra
10/04/2025, 12:38 AMraja
10/04/2025, 2:37 PMraja
10/04/2025, 2:43 PMraja
10/04/2025, 2:44 PMraja
10/04/2025, 4:16 PMraja
10/05/2025, 8:34 PMChiranjeet Mishra
10/08/2025, 9:01 AM