Vonage Voicemail Detection
# support
v
Hi @Nick | CFive, I'm an AI assistant for Vapi. I'll analyze available sources and get back to you shortly.
----------------------------- **While I generate an answer, here are some sources that might be helpful**: * [Update Assistant]() * [Create Assistant]() * [List Assistants]() * [Get Assistant]() -----------------------------
### Answer To enable voicemail detection for a Vonage phone number in Vapi, you need to set the
voicemailDetection
settings when configuring your phone number. This can involve specifying settings such as
voicemailDetectionEnabled
,
voicemailMessage
, and other related parameters. Here's an example of how you might configure it when making an API request:
Copy code
json
{
  "voicemailDetection": {
    "enabled": true,
    "voicemailMessage": "Please leave a message after the beep.",
    "provider": "vonage",
    "voicemailDetectionTypes": [
      "machine_end_beep",
      "machine_end_silence"
    ]
  }
}
This configuration will enable the system to detect voicemails based on the criteria you set, such as listening for a beep or silence indicating the start of a voicemail. Ensure you have the correct authorization and that your phone number is properly set up in Vapi to handle incoming calls with these settings [(1)]() . For more details on how to implement this setup via API, you can refer to the Vapi documentation on handling phone numbers and voicemail settings.
n
but the only avaianle options on the docs says twilio
v
Got it. Tagging @User for additional help.
s
Yup, only twilio provides voicemail detection.