Retrieve the details of an existing endpoint. The response includes all endpoint attributes and, if the endpoint is currently registered on a SIP client, additional registration details.
curl --request GET \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Endpoint/{endpoint_id}/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"alias": "Acme Desktop Phone",
"application": "/v1/Account/MA_XXXXXXXX/Application/12345678901234567/",
"endpoint_id": "147322537258167",
"resource_uri": "/v1/Account/MA_XXXXXXXX/Endpoint/147322537258167/",
"sip_registered": "false",
"sip_uri": "sip:acme_sip_user_01@registrar.vobiz.ai",
"sub_account": null,
"username": "acme_sip_user_01"
}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}/Endpoint/{endpoint_id}/
X-Auth-ID - Your account Auth ID (e.g., {auth_id})X-Auth-Token - Your account Auth TokenContent-Type: application/json{
"api_id": "550e8400-e29b-41d4-a716-446655440000",
"endpoint_id": "87654321",
"username": "john_doe",
"alias": "John's Desktop Phone",
"sip_uri": "sip:john_doe@sip.vobiz.ai",
"sip_registered": "true",
"sip_registration": {
"contact": "192.168.1.100:5060",
"expires": "2025-10-28T11:30:00Z",
"user_agent": "Zoiper v5.4.5",
"received": "203.0.113.42:5060",
"path": null
},
"application": {
"app_id": "12345678",
"app_name": "Customer Service App",
"answer_url": "https://example.com/answer",
"answer_method": "POST"
},
"allow_voice": true,
"allow_message": true,
"allow_video": false,
"allow_same_domain": true,
"allow_other_domains": false,
"allow_phones": true,
"allow_apps": true,
"sub_account": null,
"resource_uri": "/v1/Account/{auth_id}/Endpoint/87654321/",
"created_at": "2025-10-27T10:30:00Z",
"updated_at": "2025-10-28T09:15:00Z"
}
sip_registration object contains detailed information about the endpoint’s current SIP registration including contact address, expiration time, user agent, and received address. This object is only present when sip_registered is "true".{
"error": "Endpoint not found",
"endpoint_id": "99999999"
}
curl -X GET https://api.vobiz.ai/api/v1/Account/{auth_id}/Endpoint/87654321/ \
-H "X-Auth-ID: YOUR_AUTH_ID" \
-H "X-Auth-Token: YOUR_AUTH_TOKEN"
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Your account Auth ID
"MA_XXXXXX"
"87654321"
Was this page helpful?
curl --request GET \
--url https://api.vobiz.ai/api/v1/Account/{auth_id}/Endpoint/{endpoint_id}/ \
--header 'X-Auth-ID: <api-key>' \
--header 'X-Auth-Token: <api-key>'{
"alias": "Acme Desktop Phone",
"application": "/v1/Account/MA_XXXXXXXX/Application/12345678901234567/",
"endpoint_id": "147322537258167",
"resource_uri": "/v1/Account/MA_XXXXXXXX/Endpoint/147322537258167/",
"sip_registered": "false",
"sip_uri": "sip:acme_sip_user_01@registrar.vobiz.ai",
"sub_account": null,
"username": "acme_sip_user_01"
}