TimG
03/18/2026, 10:58 AMVapi Support Bot
03/18/2026, 10:59 AMcustomerJoinTimeoutSeconds to 30-45 seconds to give users more time for permission prompts and network setup. For example, when creating your assistant:
typescript
const assistant = await client.assistants.create({
name: "Customer Support Assistant",
// ...other config...
customerJoinTimeoutSeconds: 45
});
This helps prevent premature timeouts due to mobile browser restrictions.
See the [Vapi documentation for details](https://docs.vapi.ai/calls/customer-join-timeout).
Source:
- [Customer Join Timeout](https://docs.vapi.ai/calls/customer-join-timeout)TimG
03/18/2026, 11:14 AM