$npx -y skills add googleworkspace/cli --skill recipe-reschedule-meetingMove a Google Calendar event to a new time and automatically notify all attendees.
| 1 | # Reschedule a Google Calendar Meeting |
| 2 | |
| 3 | > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` |
| 4 | |
| 5 | Move a Google Calendar event to a new time and automatically notify all attendees. |
| 6 | |
| 7 | ## Steps |
| 8 | |
| 9 | 1. Find the event: `gws calendar +agenda` |
| 10 | 2. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` |
| 11 | 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"}}'` |