iCalendlyDeveloper Docs
Cal unified calendars

DELDelete a calendar event

Delete/cancel an event on the authenticated user's calendar. Currently only Google Calendar is supported.

DELETE/v2/calendars/{calendar}/events/{eventUid}

Path Parameters

calendarRequiredstring
Value in: "google" | "office365" | "apple"
eventUidRequiredstring

The calendar provider's event ID (e.g. Google Calendar event ID)

Header Parameters

AuthorizationRequiredstring

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

curl -X DELETE "https://example.com/v2/calendars/google/events/<string>" \
  -H "Authorization: <string>"