Calendar Events Synced
Calendar Events Synced payload structure
Payload Structure
| Field | Type | Required | Description |
|---|---|---|---|
data | object | Yes | |
event | string | Yes | The webhook event type |
Field Details
-
data(object) RequiredProperties:
-
calendar_id(string (uuid)) Required The UUID of the calendar connection that was synced -
events(object[]) Required Array of event series that were synced. Each series contains its event instances
-
-
event(string) Required The webhook event type
Example
{
"data": {
"calendar_id": "examplecalendar_id",
"events": []
},
"event": "exampleevent"
}