Retrieve all SIP credentials on the account.
curl --request GET \
--url https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/credentials \
--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",
"username": "acme_sip_user_01",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "office_phone_03",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-20T08:15:00Z",
"updated_at": "2026-03-20T08:15:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "sipuser_demo",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-15T14:42:00Z",
"updated_at": "2026-03-15T14:42: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.
GET https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/credentials
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 credentials to return per page. Default: 20. |
offset | integer | No | Number of credentials to skip before returning results. Default: 0. For example, offset=20 with limit=20 returns page 2. |
{
"meta": {
"limit": 20,
"offset": 0,
"total": 3
},
"objects": [
{
"id": "aabbccdd-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "sipuser_demo",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-04-22T08:51:47.813889Z",
"updated_at": "2026-04-22T08:51:47.813889Z"
},
{
"id": "11223344-5566-7788-99aa-bbccddeeff00",
"account_id": "MA_XXXXXXXX",
"username": "acme_sip_user",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-04-09T09:02:16.450443Z",
"updated_at": "2026-04-09T09:02:16.450443Z"
},
{
"id": "99887766-5544-3322-1100-ffeeddccbbaa",
"account_id": "MA_XXXXXXXX",
"username": "office_phone_03",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": false,
"created_at": "2026-04-08T10:13:14.485836Z",
"updated_at": "2026-04-20T16:30:00.000000Z"
}
]
}
curl -X GET https://api.vobiz.ai/api/v1/account/{auth_id}/trunks/credentials \
-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/credentials?limit=10&offset=0" \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
total from metadata to calculate total pagesobjects array indicates no more resultsYour 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/credentials \
--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",
"username": "acme_sip_user_01",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-25T10:00:00Z",
"updated_at": "2026-03-25T10:00:00Z"
},
{
"id": "99887766-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "office_phone_03",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-20T08:15:00Z",
"updated_at": "2026-03-20T08:15:00Z"
},
{
"id": "55667788-1234-5678-90ab-cdef12345678",
"account_id": "MA_XXXXXXXX",
"username": "sipuser_demo",
"password": "<redacted>",
"realm": "MA_XXXXXXXX.sip.vobiz.ai",
"enabled": true,
"created_at": "2026-03-15T14:42:00Z",
"updated_at": "2026-03-15T14:42:00Z"
}
]
}