Get a breakdown of session failures with error codes and rates.
GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/failure-analysis
Returns a detailed analysis of failed Meeting Buddy sessions, including the overall failure rate, failure counts grouped by error code, and the percentage contribution of each error type. Useful for identifying recurring issues and prioritizing fixes. Defaults to the last 30 days.
start_date string optional
Start of date range (UTC, ISO 8601 format). Defaults to 30 days before end_date.
end_date string optional
End of date range (UTC, ISO 8601 format). Defaults to current time.
Returns a failure analysis object:
| Field | Type | Description |
|---|---|---|
total_failed | integer | Total number of failed sessions |
failure_rate | number | Ratio of failed sessions to total sessions |
items | array | Failure items grouped by error code |
Each item contains:
| Field | Type | Description |
|---|---|---|
error_code | string or null | Error code (e.g., "VEXA_CONNECTION_FAILED") |
error_message | string or null | Error description |
count | integer | Number of failures with this error code |
percentage | number | Percentage of total failures |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/failure-analysis" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool