Connectivity
The Connectivity API allows you to manage carrier connections, SIP trunks, and external routing for your phone system.
Base URL​
https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/connectivity
Overview​
Configure and manage your connections to external carriers and SIP providers. This includes trunk configuration, failover settings, and routing rules.
Endpoints​
| Method | Endpoint | Description |
|---|---|---|
| GET | /connectivity | List connectivity configurations |
| GET | /connectivity/{ID} | Get configuration details |
| PUT | /connectivity | Create new connection |
| POST | /connectivity/{ID} | Update connection |
| DELETE | /connectivity/{ID} | Delete connection |
List Connections​
curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/connectivity" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Response​
{
"auth_token": "{AUTH_TOKEN}",
"data": [],
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress
This documentation is being expanded. Check back soon for complete API reference.