Skip to content
Last updated

Get session counts grouped by status.

GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/status-breakdown

Returns a breakdown of Meeting Buddy sessions by their current status within the specified date range. Each item includes the count and percentage of total. 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 breakdown object:

FieldTypeDescription
dimensionstringAlways "status" for this endpoint
totalintegerTotal sessions across all statuses
itemsarrayBreakdown items, one per status

Each item contains:

FieldTypeDescription
labelstringStatus name (e.g., "completed", "failed", "active")
countintegerNumber of sessions with this status
percentagenumberPercentage of total sessions
cURL
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/status-breakdown" \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool