Webhooks
Receive real-time updates, handle errors, and maintain your calendar integrations
Webhook Integration
Understanding Calendar Webhooks
In addition to live meeting events via the Live Meeting Updates, your Meeting BaaS webhook endpoint defined in your account will receive calendar sync events with the type calendar.sync_events
. These events notify you about:
- New meeting schedules
- Meeting changes or cancellations
- Calendar sync status updates
When a calendar change is detected, a webhook is sent to your registered endpoint. This allows you to take real-time actions, such as scheduling a recording for new meetings or updating your database.
Webhook Payload Structure
Example Webhook Payload
The payload includes:
event
: The type of webhook event (e.g.,calendar.sync_events
)data
: Contains the details about what changed:calendar_id
: The ID of the calendar that had changeslast_updated_ts
: When the changes occurred (UTC timestamp)affected_event_uuids
: Array of event IDs that were added, updated, or deleted
All webhook timestamps are in UTC format. Always process timestamps accordingly in your application.
Processing Webhook Updates
There are two approaches to processing calendar updates:
1. Using the last_updated_ts timestamp
This approach gets all events updated after a certain timestamp:
2. More efficient approach using affected_event_uuids
This approach only processes the specific events that changed:
This allows you to:
-
Track all calendar changes in real-time
-
Decide whether to record new or modified meetings
-
Keep your system synchronized with the latest meeting data
Always return a 200 OK response promptly to acknowledge receipt of the webhook before processing the data. This prevents webhook retry mechanisms from sending duplicate events.
Webhook Best Practices
Idempotent Processing
Implement idempotent webhook processing - you may receive the same webhook multiple times in rare circumstances:
Retry Logic
Configure your webhook endpoint to process these real-time updates and implement appropriate retry logic for reliability:
Next Steps
Now that you understand webhooks and error handling:
- Learn how to maintain and clean up your calendar integrations