Webhook Events Documentation
Meeting BaaS sends webhook events to your configured webhook URL when specific events occur.
Webhook Event Types
1. complete
Sent when a bot successfully completes recording a meeting. Contains full transcription data and a link to the recording.
The complete
event includes:
- bot_id: Unique identifier for the bot that completed recording
- speakers: A set of speaker names identified in the meeting
- transcript: Full transcript data with speaker identification and word timing
- mp4: URL to the recording file (valid for 24 hours by default)
- event: Event type identifier ("complete")
2. failed
Sent when a bot fails to join or record a meeting. Contains error details.
The failed
event includes:
- bot_id: Unique identifier for the bot that failed
- error: Error code identifying the type of failure
- message: Detailed human-readable error message
Common error types include:
meeting_not_found
: The meeting ID or link was invalid or expiredaccess_denied
: The bot was denied access to the meetingauthentication_error
: Failed to authenticate with the meeting platformnetwork_error
: Network connectivity issues during recordinginternal_error
: Internal server error
3. calendar.sync_events
Sent when calendar events are synced. Contains information about which events were updated.
The calendar.sync_events
event includes:
- calendar_id: UUID of the calendar that was synced
- last_updated_ts: ISO-8601 timestamp of when the sync occurred
- affected_event_uuids: Array of UUIDs for calendar events that were added, updated, or deleted
This event is triggered when:
- Calendar data is synced with the external provider (Google, Microsoft)
- Multiple events may be created, updated, or deleted in a single sync operation
- Use this event to update your local cache of calendar events
4. transcription_complete
Sent when transcription is completed separately from recording (e.g., after retranscribing).
The transcription_complete
event includes:
- bot_id: Unique identifier for the bot with the completed transcription
This event is sent when:
- You request a retranscription via the
/bots/retranscribe
endpoint - An asynchronous transcription process completes after the recording has ended
Setting Up Webhooks
You can configure webhooks in two ways:
- Account-level webhook URL: Set a default webhook URL for all bots in your account using the
/accounts/webhook_url
endpoint - Bot-specific webhook URL: Provide a
webhook_url
parameter when creating a bot with the/bots
endpoint
Your webhook endpoint must:
- Accept POST requests with JSON payload
- Return a 2xx status code to acknowledge receipt
- Process requests within 10 seconds to avoid timeouts
- Handle each event type appropriately based on the event type
All webhook requests include:
x-meeting-baas-api-key
header with your API key for verificationcontent-type: application/json
header- JSON body containing the event details
Webhook Reliability
If your endpoint fails to respond or returns an error, the system will attempt to retry the webhook delivery. For critical events, we recommend implementing:
- Idempotency handling to prevent duplicate processing of the same event
- Proper logging of webhook receipts for audit purposes
- Asynchronous processing to quickly acknowledge receipt before handling the event data
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