Link a Vobiz phone number to a voice Application so incoming calls and messages on that number are routed to the Application’s configured webhooks.
curl --request POST \
--url https://api.example.com/api/v1/account/{auth_id}/numbers/{number}/applicationLink a phone number from your account inventory to a voice application. After attaching, all incoming calls to that number are routed through the application’sDocumentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
answer_url and hangup_url webhooks.
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth TokenContent-Type: application/json| Field | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your account Auth ID |
number | string | Yes | The E.164-formatted phone number, URL-encoded (+ → %2B). Example: %2B1234567890 |
| Field | Type | Required | Description |
|---|---|---|---|
application_id | string | Yes | The app_id of the application to attach to this number. |
curl -X POST "https://api.vobiz.ai/api/v1/account/{auth_id}/numbers/%2B1234567890/application" \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"application_id": "app_xxxxxxxxxxxx"
}'
{
"message": "Number attached to application",
"number": "+919876543210",
"application": {
"answer_method": "POST",
"answer_url": "https://example.com/answer",
"api_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"app_id": "12345678901234567",
"app_name": "Acme Corp",
"application_type": "XML",
"created_at": "2026-04-02 12:11:19.740666+00:00",
"default_app": false,
"default_endpoint_app": false,
"enabled": true,
"fallback_answer_url": null,
"fallback_method": "POST",
"hangup_method": "POST",
"hangup_url": "https://example.com/answer",
"log_incoming_message": true,
"message_method": "POST",
"message_url": null,
"public_uri": false,
"resource_uri": "/v1/Account/MA_XXXXXXXX/Application/12345678901234567/",
"sip_transfer_method": "POST",
"sip_transfer_url": null,
"sip_uri": "sip:12345678901234567@app.vobiz.ai",
"sub_account": null,
"updated_at": "2026-04-02 12:11:19.740666+00:00"
}
}
Was this page helpful?
curl --request POST \
--url https://api.example.com/api/v1/account/{auth_id}/numbers/{number}/application