Update a SIP trunk’s name, configuration, or status.
curl --request PUT \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/{trunk_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"name": "<string>",
"max_concurrent_calls": 123,
"enabled": true
}
'{
"trunk_id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"name": "Acme Production Trunk Updated",
"trunk_domain": "99887766-1234-5678-90ab-cdef12345678.sip.vobiz.ai",
"trunk_status": "active",
"secure": false,
"trunk_direction": "both",
"concurrent_calls_limit": 10,
"cps_limit": 2,
"description": "",
"transport": "udp",
"recording": false,
"enable_transcription": false,
"pii_redaction": false,
"webhook_method": "POST",
"recording_webhook_enabled": false,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:05:00Z"
}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.
PUT https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/{trunk_id}
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth TokenContent-Type: application/jsontrunk_id and auth_id cannot be changed after creation.| Field | Type | Required | Description |
|---|---|---|---|
name | string | No | Updated name for the trunk. Maximum 255 characters. |
description | string | No | Updated description for the trunk. |
enabled | boolean | No | Enables or disables the trunk. Set to false to temporarily disable without deleting. |
curl -X PUT https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/bfab10fb-cb97-488b-9c63-989c32980b0f \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Production Trunk"
}'
updated_at timestamp.
{
"trunk_id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"name": "Acme Production Trunk",
"trunk_domain": "aabbccdd-1234-5678-90ab-cdef12345678.sip.vobiz.ai",
"trunk_status": "active",
"secure": false,
"trunk_direction": "both",
"concurrent_calls_limit": 10,
"cps_limit": 2,
"description": "",
"transport": "udp",
"recording": false,
"enable_transcription": false,
"pii_redaction": false,
"webhook_method": "POST",
"recording_webhook_enabled": false,
"created_at": "2026-05-12T05:11:52.054462Z",
"updated_at": "2026-05-12T05:12:18.147340Z"
}
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Trunk updated
Was this page helpful?
curl --request PUT \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/{trunk_id} \
--header 'Content-Type: application/json' \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>' \
--data '
{
"name": "<string>",
"max_concurrent_calls": 123,
"enabled": true
}
'{
"trunk_id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"name": "Acme Production Trunk Updated",
"trunk_domain": "99887766-1234-5678-90ab-cdef12345678.sip.vobiz.ai",
"trunk_status": "active",
"secure": false,
"trunk_direction": "both",
"concurrent_calls_limit": 10,
"cps_limit": 2,
"description": "",
"transport": "udp",
"recording": false,
"enable_transcription": false,
"pii_redaction": false,
"webhook_method": "POST",
"recording_webhook_enabled": false,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:05:00Z"
}