Skip to main content

Inspector

The Inspector API provides debugging tools to examine system events, call flows, and real-time activity.

Base URL​

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

Overview​

Inspector helps you troubleshoot issues by providing visibility into system events, call routing decisions, and real-time call activity. Use it for debugging and monitoring.

Endpoints​

MethodEndpointDescription
GET/call_inspector/{CALL_ID}Inspect a specific call by ID
Call ID Required

The Call Inspector requires a specific call ID to inspect. You can obtain call IDs from the Channels API (for active calls) or CDRs API (for completed calls).

Inspect Call​

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

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": {
"call_id": "call_abc123",
"events": []
},
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress

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