Skip to content
Last updated

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.

Query Parameters

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

Returns a failure analysis object:

FieldTypeDescription
total_failedintegerTotal number of failed sessions
failure_ratenumberRatio of failed sessions to total sessions
itemsarrayFailure items grouped by error code

Each item contains:

FieldTypeDescription
error_codestring or nullError code (e.g., "VEXA_CONNECTION_FAILED")
error_messagestring or nullError description
countintegerNumber of failures with this error code
percentagenumberPercentage of total failures
cURL
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/failure-analysis" \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool