Get currently active Meeting Buddy sessions for the organization.
GEThttps://api.aitronos.com/v1/meeting-buddy/analytics/active
Returns a list of all Meeting Buddy sessions that are currently in an active state (initializing, joining, active, or recording). Useful for monitoring dashboards and real-time session management.
Returns an array of active session summary objects. Each object contains:
| Field | Type | Description |
|---|---|---|
session_id | string | Unique session identifier (mbsess_ prefix) |
meeting_link | string | Meeting URL |
platform | string | Meeting platform (teams, zoom, meet, webex) |
status | string | Current status (initializing, joining, active, recording) |
bot_name | string | Display name of the bot |
join_timestamp | string or null | When the bot joined the meeting (ISO 8601) |
current_participants | array | List of current participant names |
duration_so_far_seconds | number or null | Elapsed duration in seconds |
cURL
- Bash
- Python
- Python
- JavaScript
curl -s -X GET https://api.aitronos.com/v1/meeting-buddy/analytics/active \
-H "Authorization: Bearer $ACCESS_TOKEN" | python3 -m json.tool