Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Move a Google Calendar event to a new time and automatically notify all attendees of the change.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-reschedule-meeting3description: "Move a Google Calendar event to a new time and automatically notify all attendees."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "scheduling"9requires:10bins:11- gws12skills:13- gws-calendar14---1516# Reschedule a Google Calendar Meeting1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`1920Move a Google Calendar event to a new time and automatically notify all attendees.2122## Steps23241. Find the event: `gws calendar +agenda`252. Get event details: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`263. 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"}}'`2728