Skip to main content

Limits

The Limits API allows you to view and configure account limits for concurrent calls, trunks, and other resources.

Base URL​

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

Overview​

Limits control resource allocation for your account, including maximum concurrent calls, trunk capacity, and feature quotas. Monitor current usage and adjust limits as needed.

Endpoints​

MethodEndpointDescription
GET/limitsGet current limits
POST/limitsUpdate limits

Get Limits​

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

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": {
"inbound_trunks": -1,
"outbound_trunks": -1,
"twoway_trunks": 10
},
"request_id": "{REQUEST_ID}",
"status": "success"
}

See Also​

Documentation In Progress

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