POST
gcalendar_events_move.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.
Move an event to another calendar, changing its organizer. Only events with an eventType of default can be moved.
from charter.packs import gcalendar
result = await gcalendar.events_move.ainvoke({"calendarId": ..., "eventId": ..., "destination": ...})
https://www.googleapis.com/auth/calendar.events. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
calendarId * | string | Calendar identifier of the source calendar where the event currently is on. |
eventId * | string | Event identifier. |
| Field | Type | Description |
|---|---|---|
destination * | string | Calendar identifier of the target calendar where the event is to be moved to. |
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?