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"
}
'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/
| Parameter | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your Vobiz authentication ID |
call_uuid | string | Yes | Unique identifier of the active call |
| Field | Type | Required | Description |
|---|---|---|---|
digits | string | Yes | The DTMF digits to send. Valid characters: 0–9, *, # |
leg | string | No | Which call leg receives the digits. Values: aleg, bleg. Default: aleg |
aleg refers to the caller (A-leg); bleg refers to the callee (B-leg). DTMF tones are sent in the order specified in the digits string.{
"digits": "1234#",
"leg": "aleg"
}
{
"api_id": "uuid-here",
"message": "digits sent"
}
| Field | Description |
|---|---|
api_id | Unique identifier for this API request |
message | Confirmation that digits were sent successfully |
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"
}
'