Calendar Connection Deleted
Calendar Connection Deleted 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 deleted calendar connection -
calendar_platform("google" | "microsoft") Required The calendar platform. Either 'google' for Google Calendar or 'microsoft' for Microsoft Outlook/365 -
deleted_at(string (date-time)) Required ISO 8601 timestamp when the calendar connection was deleted
-
-
event(string) Required The webhook event type
Example
{
"data": {
"calendar_id": "examplecalendar_id",
"calendar_platform": "examplecalendar_platform",
"deleted_at": "exampledeleted_at"
},
"event": "exampleevent"
}