Mistermanu#000
04/09/2025, 3:48 AMVapi Support Bot
04/09/2025, 3:50 AMcustomer-busy
or customer-did-not-answer
signals when a call is not answered or hung up, rather than triggering the voicemail detection flow that works when calls ring to voicemail naturally.
## How to Improve Your Configuration
Here are some recommendations to improve your setup:
### 1. Increase the machineDetectionTimeout
Your current timeout is set to 7 seconds, which may be too short. According to [documentation on voicemail detection](https://docs.vapi.ai/phone-calling/voice-mail-detection), a longer timeout gives the system more time to detect voicemail:
javascript
machineDetectionTimeout: 30 // Recommended value between 15-30 seconds
### 2. Ensure All Voicemail Detection Types Are Included
Consider adding more detection types to your configuration:
javascript
voicemailDetectionTypes: [
"machine_start",
"machine_end_beep",
"machine_end_silence",
"machine_end_other",
"unknown"
]
### 3. Optimize Your VAPI Voicemail Tool Configuration
Since you're already using the VAPI voicemail tool as backup, make sure it's properly configured. The VAPI tool uses an LLM to listen for typical voicemail greetings in the call's audio transcription. Here's how to ensure it's properly set up:
javascript
{
...yourExistingSettings,
voicemailDetection: {
provider: "twilio",
voicemailDetectionTypes: [
"machine_start",
"machine_end_beep",
"machine_end_silence",
"unknown"
],
enabled: true,
machineDetectionTimeout: 30
},
model: {
tools: [{ type: "voicemail" }]
}
}
Vapi Support Bot
04/09/2025, 3:50 AMKyle Brunker
04/11/2025, 6:54 AM42abe164-a5a4-461a-98f2-221123bb3345
Waited 300s But Transport Never Connected.
This call never connected, you have to check with Twilio team for this.Mistermanu#000
04/16/2025, 2:55 AMShubham Bajaj
04/21/2025, 12:56 PM