Skip to main content

IPs

The IPs API allows you to manage IP address whitelisting for SIP endpoints and access control.

Base URL​

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

Overview​

Control which IP addresses can register devices and make calls through your account. Use IP whitelisting to enhance security and restrict access to trusted networks.

Endpoints​

MethodEndpointDescription
GET/ipsList whitelisted IPs
GET/ips/{ID}Get IP details
PUT/ipsAdd IP to whitelist
POST/ips/{ID}Update IP entry
DELETE/ips/{ID}Remove IP from whitelist

List IPs​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/ips" \
-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.