Events
Work with calendar events and schedule recordings
After setting up your calendar integration, you can work with calendar events and schedule recordings. This guide explains how to manage calendar events through the Meeting BaaS API.
Event Management
Listing and Retrieving Events
Monitor and manage calendar events:
- List Events: List Events - See all upcoming meetings
- Get Event Details: Get Event Details - View meeting info and bot status
List Events Example
The List Events endpoint supports various filtering options:
-
calendar_id
(required) - Which calendar's events to retrieve -
start_date_gte
- Filter events starting on or after this timestamp -
start_date_lte
- Filter events starting on or before this timestamp -
updated_at_gte
- Filter events updated on or after this timestamp -
status
- Filter by meeting status ("upcoming", "past", "all") - default is "upcoming" -
attendee_email
- Filter events with a specific attendee -
organizer_email
- Filter events with a specific organizer -
cursor
- For pagination through large result sets
See the List Events API Reference for full details.
Get Event Details Example
Understanding Meeting Links
Meeting BaaS automatically detects meeting links within calendar events and can deploy bots based on your configuration.
Meeting links are detected from the event location, description, or custom properties depending on the calendar provider, habits or integrations of the user.
Each platform has its own link format that our system automatically recognizes.
Recording Management
You can schedule or cancel recording events for specific calendar events:
- Schedule Recording: Schedule Record Event - Configure a bot to record a specific event
- Cancel Recording: Unschedule Record Event - Cancel a scheduled recording
Schedule Recording Example
When scheduling a recording, the bot will automatically join the meeting at the scheduled time and begin recording based on your configuration.
Recording Options
The recording configuration supports the same options as manual bot deployment:
Visual Recording Options:
speaker_view
- Records the active speaker (default)gallery_view
- Records all participants in a grid layoutaudio_only
- Records only the audio from the meeting
Additional Features:
include_transcription: true|false
- Generate speech-to-text transcriptionbot_name: "string"
- Custom name for the bot in the meetingbot_avatar_url: "url"
- Custom profile picture for the botentry_message: "string"
- Message the bot will send upon joining
Canceling a Scheduled Recording
To cancel a scheduled recording:
Remember to handle webhook notifications to track the recording status and receive the final recording data. These updates can be used to determine whether to record new or updated meetings.
Next Steps
Now that you understand how to work with calendar events:
- Learn about webhooks for calendar updates
- Explore custom meeting bot configurations
- Check out our Live Meeting Updates system