API Reference/Webhooks
Calendar Webhook Events Documentation
Meeting BaaS sends the following webhook events related to calendar integrations.
Calendar Webhook Event Types
1. calendar.sync_events
Sent when calendar events are synced with external providers.
Payload Structure:
When it's triggered:
- After initial calendar connection is established
- When external calendar providers (Google, Microsoft) send change notifications
- After manual calendar resync operations
- During scheduled periodic syncs
- When events are created, updated, or deleted in the source calendar
What to do with it:
- Update your local copy of calendar events
- Process any new events that match your criteria
- Remove any deleted events from your system
- Update schedules for any modified events
- Refresh your UI to show the latest calendar data
Field details:
calendar_id
: The UUID of the synchronized calendarlast_updated_ts
: ISO-8601 timestamp when the sync occurredaffected_event_uuids
: Array of UUIDs for events that were changed
Integration with Meeting BaaS Calendar API
After receiving a calendar webhook event, you can:
- Use the
/calendar_events
endpoint to retrieve detailed information about specific events - Use the
/calendars/{uuid}
endpoint to get calendar metadata - Schedule recording bots for any new meetings with the
/calendar_events/{uuid}/bot
endpoint
Webhook Usage Tips
- Each event includes affected event UUIDs for efficient processing
- You don't need to retrieve all calendar events - just process the changed ones
- The timestamp helps determine the sequence of updates
- For high-frequency calendars, consider batch processing of multiple events
For security, always validate the API key in the x-meeting-baas-api-key
header matches your API key.
Authorization
x-meeting-baas-api-key
<token>API key for authentication
In: header