Skip to main content

Registrations

The Registrations API provides information about currently registered SIP devices and endpoints.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/registrations

Overview​

Registrations show which SIP devices are currently connected and registered to the system. Use this API to monitor device connectivity and troubleshoot registration issues.

Endpoints​

MethodEndpointDescription
GET/registrationsList all registrations

List Registrations​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/registrations" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": [
{
"username": "user_1001",
"realm": "example.audian.com",
"contact": "sip:user@192.168.1.100:5060",
"user_agent": "Polycom VVX 450",
"expires": 300
}
],
"request_id": "{REQUEST_ID}",
"status": "success"
}

See Also​

Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.