Send DTMF (keypad) tones on an active call. Use w for 0.5s pause, W for 1s pause.
curl --request POST \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/DTMF/ \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"digits": "1234"
}
'DTMF (Dual-Tone Multi-Frequency) is the tone generated whenever a key is pressed during an active call. Use this resource to send DTMF digits programmatically - the most common use case is automating digit entry to a receiver in an outbound call.Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
POST https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/DTMF/
*, and # for complete IVR navigation.POST - Send DTMF digits to an active call. Specify the digits to send and which call leg should receive them.Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
DTMF sent
Was this page helpful?
curl --request POST \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/DTMF/ \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"digits": "1234"
}
'