Not possible to set voicemail detection through da...
# support
k
Now that functions are deprecated, there is no way to set the voicemail detection directly through the dashboard
v
You're right! With the deprecation of functions, you can't set voicemail detection directly through the dashboard anymore. However, you can manage voicemail detection settings in Vapi using the API. Here are the two main methods you can use: 1. **Using Twilio’s Voicemail Detection**: You can configure Vapi to utilize Twilio's voicemail detection by setting it up in your API settings. Here's an example configuration:
Copy code
json
   {
     "voicemailDetection": {
       "provider": "twilio",
       "voicemailDetectionTypes": [
         "machine_start",
         "machine_end_beep",
         "machine_end_silence",
         "unknown",
         "machine_end_other"
       ],
       "enabled": true,
       "machineDetectionTimeout": 15,
       "machineDetectionSpeechThreshold": 2500,
       "machineDetectionSpeechEndThreshold": 2050,
       "machineDetectionSilenceTimeout": 2000
     }
   }
2. **Using Vapi's Built-In Voicemail Tool**: You can also use Vapi's own voicemail detection tool, which relies on contextual cues. Here’s how you can configure it:
Copy code
json
   {
     "model": {
       "tools": [{ "type": "voicemail" }]
     }
   }
You can even combine both methods for better accuracy! If you need more details on how to implement these configurations, just let me know! 😊 Sources: - [Current Methods for Voicemail Detection in Vapi](https://docs.vapi.ai/phone-calling/voice-mail-detection) - [Managing Voicemail Detection Settings in VAPI Without Using the Dashboard](https://docs.vapi.ai/phone-calling/voice-mail-detection)
p
Hey @KaiTakami checking if this is resolved for you.
k
Not really.
s
@KaiTakami you can still set the voicemail detection using tools and Twilio AMD, here we have documented the compelte process https://docs.vapi.ai/phone-calling/voice-mail-detection
Give it a try and let me know how it goes.
2 Views