Vapi
01/16/2025, 11:32 AMVapi
01/16/2025, 11:32 AMJ.
01/16/2025, 11:33 AMVapi
01/16/2025, 11:33 AMVapi
01/16/2025, 11:36 AMVapi
01/16/2025, 11:52 AMtrue
. You might need to configure specific values that dictate how the voicemail detection should behave. Here's a more detailed explanation:
- `voicemailDetection`: Setting this parameter to true
would enable the voicemail detection feature.
- `voicemailDetectionTimeout`: This parameter often requires a numerical value that represents the maximum amount of time (in seconds) the system should wait for voicemail detection before proceeding.
- `voicemailDetectionSilenceTimeout`: Similar to the timeout, this parameter would need a numerical value indicating the duration of silence that should be considered as an indicator of voicemail.
For example, your API call might look something like this (in a hypothetical JSON format):
json
{
"voicemailDetection": true,
"voicemailDetectionTimeout": 30,
"voicemailDetectionSilenceTimeout": 5
}
In this example, voicemailDetection
is set to true
to enable the feature, voicemailDetectionTimeout
is set to 30 seconds to wait for voicemail detection, and voicemailDetectionSilenceTimeout
is set to 5 seconds to wait for silence before assuming it's a voicemail.
Please refer to your specific API documentation for the exact parameters and values required. If you need help finding this information, let me know, and I can assist you further.Shubham Bajaj
01/16/2025, 5:25 PM