DELETE
gcalendar_events_delete.py
Requires
https://www.googleapis.com/auth/calendar.events. Costs 1 against the provider’s own quota.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Delete an event from the calendar.
from charter.packs import gcalendar
result = await gcalendar.events_delete.ainvoke({"calendarId": ..., "eventId": ...})
https://www.googleapis.com/auth/calendar.events. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
calendarId * | string | Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the “primary” keyword. |
eventId * | string | Event identifier. |
| Field | Type | Description |
|---|---|---|
sendUpdates | SendUpdates | Guests who should receive notifications about the change. Acceptable values are: “all” (notifications are sent to all guests), “externalOnly” (notifications are sent to non-Google Calendar guests only), “none” (no notifications are sent; for calendar migration tasks, consider using the Events.import method instead). |
Was this page helpful?