Setup
Meeting BaaS allows you to automatically sync calendars from Outlook and Google Workspace to deploy bots to scheduled meetings.
Prerequisites
Before starting the calendar sync integration, ensure you have:
- An active Meeting BaaS account with API access
- A webhook endpoint configured in your Meeting BaaS account to receive calendar event notifications
- Developer access to Google Cloud Console and/or Microsoft Entra ID
Authentication: Get your OAuth credentials
To start syncing calendars, you'll need two sets of credentials:
- Your App's Credentials (Service Level)
- For Outlook: Your app's Microsoft Client ID and Client Secret
- For Google Workspace: Your app's Google Client ID and Client Secret
- End User's Credentials (User Level)
- OAuth refresh token obtained when user grants calendar access to your app
Best Practice: Request calendar access as a separate step after initial user signup. Users are more likely to grant calendar access when it's clearly tied to a specific feature they want to use.
Required OAuth Scopes
For Google Workspace:
https://www.googleapis.com/auth/calendar.readonly
- To read calendar and event datahttps://www.googleapis.com/auth/calendar.events.readonly
- To access event details
For Microsoft Outlook:
Calendars.Read
- To read calendar and event dataCalendars.ReadWrite
- Required if you need to modify calendar events
Optional: List Raw Calendars
Before syncing calendars, you can use the List Raw Calendars endpoint to view all your user's available calendars. This is particularly useful when a user has multiple calendars and you need to choose which ones to sync.
Request Example
Response Example
Calendar IDs differ between providers. Google uses email-like IDs, while Microsoft uses GUID formats.
Create a Calendar Integration
Create a new calendar integration by calling the Create Calendar endpoint with the previously obtained credentials.
Request Example
If the raw_calendar_id
parameter is not provided, Meeting BaaS will sync the user's primary calendar by default.
Response Example
Store the returned calendar ID safely - you'll need it for future operations.
Managing Calendars
Once authenticated, you can manage your calendars as described in the Managing Calendar Events guide.
After initial setup, Meeting BaaS handles all calendar API interactions. You only need to respond to webhook events for calendar changes, which are covered in the webhooks guide.
Calendar integrations can have the following status values:
syncing
- Initial sync in progressactive
- Calendar is actively syncingerror
- Sync encountered an error (check theerror_message
field)disconnected
- The calendar connection has been terminated
Next Steps
Now that you've set up your calendar integration:
- Learn how to manage calendar events and recordings
- Set up webhooks for calendar updates
- Explore our main API documentation for other features