Retrieve all origination URIs on the account.
curl --request GET \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/origination-uris \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"meta": {
"limit": 20,
"offset": 0,
"total": 3
},
"objects": [
{
"id": "11223344-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc1.example.com",
"priority": 1,
"weight": 10,
"enabled": true,
"transport": "udp",
"description": "Primary SBC",
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc2.example.com",
"priority": 2,
"weight": 10,
"enabled": true,
"transport": "tcp",
"description": "US East SBC",
"created_at": "2026-03-22T09:00:00Z",
"updated_at": "2026-03-22T09:00:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc3.example.com",
"priority": 10,
"weight": 10,
"enabled": true,
"transport": "tls",
"description": "",
"created_at": "2026-03-18T14:41:41Z",
"updated_at": "2026-03-18T14:41:41Z"
}
]
}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.
GET https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/origination-uris
X-Auth-ID - Your account Auth IDX-Auth-Token - Your account Auth TokenContent-Type: application/json| Field | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Maximum number of URIs to return per page. Default: 20. Range: 1–100. |
offset | integer | No | Number of URIs to skip before returning results. Default: 0. Used for pagination. |
{
"meta": {
"limit": 20,
"offset": 0,
"total": 3
},
"objects": [
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "",
"uri": "sip:sbc1.example.com:5060",
"priority": 1,
"weight": 10,
"enabled": true,
"transport": "udp",
"description": "",
"created_at": "2026-05-10T10:45:30Z",
"updated_at": "2026-05-10T10:45:30Z"
},
{
"id": "bbccddee-2345-6789-01bc-def234567890",
"account_id": "",
"uri": "sip:sbc2.example.com:5060",
"priority": 2,
"weight": 10,
"enabled": true,
"transport": "udp",
"description": "",
"created_at": "2026-05-10T11:00:00Z",
"updated_at": "2026-05-10T11:00:00Z"
},
{
"id": "ccddeeff-3456-789a-12cd-ef3456789012",
"account_id": "",
"uri": "sip:sbc1.example.com:5061",
"priority": 1,
"weight": 20,
"enabled": true,
"transport": "udp",
"description": "",
"created_at": "2026-05-10T11:15:00Z",
"updated_at": "2026-05-10T11:15:00Z"
}
]
}
curl -X GET https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/origination-uris \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
curl -X GET "https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/origination-uris?limit=10&offset=0" \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
limit to control page sizeoffset to skip to a specific pagetotal in meta to determine total URIsMath.ceil(total / limit)Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/origination-uris \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"meta": {
"limit": 20,
"offset": 0,
"total": 3
},
"objects": [
{
"id": "11223344-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc1.example.com",
"priority": 1,
"weight": 10,
"enabled": true,
"transport": "udp",
"description": "Primary SBC",
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc2.example.com",
"priority": 2,
"weight": 10,
"enabled": true,
"transport": "tcp",
"description": "US East SBC",
"created_at": "2026-03-22T09:00:00Z",
"updated_at": "2026-03-22T09:00:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"uri": "sip:sbc3.example.com",
"priority": 10,
"weight": 10,
"enabled": true,
"transport": "tls",
"description": "",
"created_at": "2026-03-18T14:41:41Z",
"updated_at": "2026-03-18T14:41:41Z"
}
]
}