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.
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 breakdown object:
| Field | Type | Description |
|---|---|---|
dimension | string | Always "status" for this endpoint |
total | integer | Total sessions across all statuses |
items | array | Breakdown items, one per status |
Each item contains:
| Field | Type | Description |
|---|---|---|
label | string | Status name (e.g., "completed", "failed", "active") |
count | integer | Number of sessions with this status |
percentage | number | Percentage of total sessions |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/status-breakdown" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool