No final confirmation before changing the event and notifying every attendee
Source references: 4The live instruction directly patches `EVENT_ID` on the primary calendar with `sendUpdates` set to `all`. Although the workflow reads event details first, it never requires presenting the final event, date, time zone, attendees, and notification scope for user confirmation. The command also contains a fixed example date and time zone that would become real update values if not replaced correctly.
If the wrong event is selected, the example time is retained, or the time zone is misunderstood, the meeting could be moved incorrectly and an erroneous notice immediately sent to every attendee, disrupting other people's schedules and harming the user's credibility.
The live workflow patches an event on the primary calendar and notifies every attendee, but it does not require verification of the final event, date, time zone, or recipients before the patch. A mistaken EVENT_ID or unreplaced example time could alter the wrong meeting and notify all attendees. Automatic notification matches the stated purpose; the risk is the missing pre-commit confirmation. Users can ask for a change summary and explicit approval, with validation that EVENT_ID, dates, and time zone were replaced.
1. Find the event: `gws calendar +agenda`2. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`3. Update the time: `gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"start": {"dateTime": "2025-01-22T14:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-22T15:00:00", "timeZone": "America/New_York"}}'`Show 3 other places
Move a Google Calendar event to a new time and automatically notify all attendees.1. Find the event: `gws calendar +agenda`2. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`2. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`3. Update the time: `gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"start": {"dateTime": "2025-01-22T14:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-22T15:00:00", "timeZone": "America/New_York"}}'`