Account Limits and Best Practices
# support
v
Vapi's default limit for concurrent outbound calls is 10 per free number. If you attempt to initiate an 11th call, Vapi does not provide built-in queuing; you must implement your own queue management. Here’s a simple example of how you might queue calls in Node.js:
Copy code
js
const queue = [];
function tryCall() {
  if (activeCalls < 10 && queue.length) {
    const nextCall = queue.shift();
    initiateVapiCall(nextCall);
  }
}
Monitor your own queue and trigger calls as slots become available. [See Vapi docs for more details](https://docs.vapi.ai/calls/outbound-calling). Source: - [Outbound Calling](https://docs.vapi.ai/calls/outbound-calling)
c
Hi Awezome, For login issues related to account password reset, you can follow these steps: 1. **Access the Dashboard**: Go to [Vapi Dashboard](https://dashboard.vapi.ai/calls). 2. **Navigate to Login Screen**: If you're unable to log in, look for the "Forgot Password" link. 3. **Request Password Reset**: Click on "Forgot Password," enter your registered email, and follow the instructions sent to your inbox to reset your password. If you're having further difficulties, ensure that your browser settings allow both cookies and JavaScript, as these are necessary for the login process to work correctly. If issues persist, try accessing the site using a different browser or device.
3 Views