List Events
Retrieves a paginated list of calendar events with comprehensive filtering options. Supports filtering by organizer email, attendee email, date ranges (start_date_gte, start_date_lte), and event status. Results can be limited to upcoming events (default), past events, or all events. Each event includes full details such as meeting links, participants, and recording status. The response includes a 'next' pagination cursor for retrieving additional results.
Authorization
x-meeting-baas-api-key
<token>API key for authentication
In: header
Query Parameters
attendee_email
string | nullIf provided, filters events to include only those with this attendee's email address Example: "jane.smith@example.com"
calendar_id
RequiredstringCalendar ID to filter events by This is required to specify which calendar's events to retrieve
cursor
string | nullOptional cursor for pagination This value is included in the next
field of the previous response
organizer_email
string | nullIf provided, filters events to include only those with this organizer's email address Example: "john.doe@example.com"
start_date_gte
string | nullIf provided, filters events to include only those with a start date greater than or equal to this timestamp Format: ISO-8601 string, e.g., "2023-01-01T00:00:00Z"
start_date_lte
string | nullIf provided, filters events to include only those with a start date less than or equal to this timestamp Format: ISO-8601 string, e.g., "2023-12-31T23:59:59Z"
status
string | nullFilter events by meeting status Valid values: "upcoming" (default) returns events after current time, "past" returns previous events, "all" returns both
updated_at_gte
string | nullIf provided, fetches only events updated at or after this timestamp Format: ISO-8601 string, e.g., "2023-01-01T00:00:00Z"