Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Add multiple attendees to an existing Google Calendar event and send update notifications.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-batch-invite-to-event3description: "Add a list of attendees to an existing Google Calendar event and send notifications."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "scheduling"9requires:10bins:11- gws12skills:13- gws-calendar14---1516# Add Multiple Attendees to a Calendar Event1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`1920Add a list of attendees to an existing Google Calendar event and send notifications.2122## Steps23241. Get the event: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`252. Add attendees: `gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "[email protected]"}, {"email": "[email protected]"}, {"email": "[email protected]"}]}'`263. Verify attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`2728