recipe-batch-invite-to-event▌
googleworkspace/cli · updated Apr 8, 2026
Batch-add attendees to Google Calendar events with automatic notifications.
- ›Requires the gws-calendar skill and gws binary to execute
- ›Workflow includes three steps: retrieve the event, patch attendees with sendUpdates: \"all\" to notify participants, and verify the update
- ›Supports adding multiple attendees in a single operation by passing an array of email addresses
1d:["$","div",null,{"className":"prose prose-invert max-w-none prose-headings:font-semibold prose-headings:tracking-tight prose-h1:text-4xl prose-h1:mb-2 prose-h2:text-2xl prose-h2:mb-2 prose-h3:text-lg prose-h3:mb-2 prose-p:text-muted-foreground prose-li:text-muted-foreground prose-code:bg-muted prose-code:text-foreground prose-code:px-1 prose-code:py-0.5 prose-code:rounded-sm prose-code:text-sm prose-code:before:content-none prose-code:after:content-none prose-pre:bg-muted prose-pre:text-foreground prose-pre:border prose-pre:border-border prose-pre:rounded-md [&_table]:!border-[color:var(--border)] [&_th]:!border-[color:var(--border)] [&_td]:!border-[color:var(--border)]","dangerouslySetInnerHTML":{"__html":"<h1>Add Multiple Attendees to a Calendar Event</h1>\n<blockquote>\n<p><strong>PREREQUISITE:</strong> Load the following skills to execute this recipe: <code>gws-calendar</code></p>\n</blockquote>\n<p>Add a list of attendees to an existing Google Calendar event and send notifications.</p>\n<h2>Steps</h2>\n<ol>\n<li>Get the event: <code>gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'</code></li>\n<li>Add attendees: <code>gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "alice@company.com"}, {"email": "bob@company.com"}, {"email": "carol@company.com"}]}'</code></li>\n<li>Verify attendees: <code>gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'</code></li>\n</ol>"}}]