Get session counts grouped by meeting platform.
GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/platform-breakdown
Returns a breakdown of Meeting Buddy sessions by platform (Microsoft Teams, Zoom, Google Meet, Webex) 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 "platform" for this endpoint |
total | integer | Total sessions across all platforms |
items | array | Breakdown items, one per platform |
Each item contains:
| Field | Type | Description |
|---|---|---|
label | string | Platform name (e.g., "teams", "zoom", "meet", "webex") |
count | integer | Number of sessions on this platform |
percentage | number | Percentage of total sessions |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/platform-breakdown" \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool