Skip to content
Last updated

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.

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 "platform" for this endpoint
totalintegerTotal sessions across all platforms
itemsarrayBreakdown items, one per platform

Each item contains:

FieldTypeDescription
labelstringPlatform name (e.g., "teams", "zoom", "meet", "webex")
countintegerNumber of sessions on this platform
percentagenumberPercentage of total sessions
cURL
curl -s -X GET "https://api.aitronos.com/v1/meeting-buddy/analytics/platform-breakdown" \
  -H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool