Each event follows a consistent schema to make parsing and validation simple.
Common Event Structure
All webhook events share the same top-level structure:Contact Updates (v1)
Triggered when contact records are created, updated, or deleted.
Example Payload
Event Types
| Event Type | Description |
|---|---|
contact.created | A new contact was created |
contact.updated | A contact record was updated |
contact.deleted | A contact record was deleted |
Notes
- Bridge may add new event categories in the future.
- Always check the
eventTypefield to determine which handler to execute. - Webhook payloads are versioned — ensure your integration supports the declared version in each event.