Global Resources
The Global Resources API allows administrators to manage carrier resources that are shared across multiple accounts.
Base URL​
https://api.audian.com:8443/v2/resources
Overview​
Global resources are carrier connections and trunks that can be shared across multiple accounts. This is typically used by resellers and large organizations to manage centralized carrier relationships.
Endpoints​
| Method | Endpoint | Description |
|---|---|---|
| GET | /resources | List global resources |
| GET | /resources/{ID} | Get resource details |
| PUT | /resources | Create new resource |
| POST | /resources/{ID} | Update resource |
| DELETE | /resources/{ID} | Delete resource |
List Resources​
curl -X GET "https://api.audian.com:8443/v2/resources" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"
Response​
{
"auth_token": "{AUTH_TOKEN}",
"data": [],
"request_id": "{REQUEST_ID}",
"status": "success"
}
See Also​
- Local Resources - Account-specific carrier resources
Documentation In Progress
This documentation is being expanded. Check back soon for complete API reference.