skillfed

recipe-batch-invite-to-event

This recipe automates adding multiple attendees to an existing Google Calendar event while sending notifications to all participants. It retrieves the event, patches it with a list of attendee emails, and verifies the changes.

recipe-batch-invite-to-event adds multiple attendees to an existing Google Calendar event and notifies them.

AI-generated summary based on this skill's SKILL.md

30,031 1,753 Apache-2.0 updated by googleworkspace

Install

googleworkspace/cli/recipe-batch-invite-to-event · repository language: Rust

CLI (skillfed)coming soon
git clone https://github.com/googleworkspace/cli
cp -r cli/skills/recipe-batch-invite-to-event ~/.claude/skills/recipe-batch-invite-to-event

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How does recipe-batch-invite-to-event add multiple people to a Google Calendar event?

recipe-batch-invite-to-event automates the process by retrieving your existing Google Calendar event, patching it with a list of attendee email addresses, and sending notifications to all participants. This eliminates manual one-by-one invitations and ensures all attendees receive notifications simultaneously.

Can I batch invite attendees to a calendar event with this recipe?

Yes. recipe-batch-invite-to-event is designed specifically for batch attendee invitations. You provide a list of email addresses, and the recipe handles adding them all to your event and notifying each person in one operation, streamlining bulk calendar management.

What happens when recipe-batch-invite-to-event sends calendar invites to multiple people?

recipe-batch-invite-to-event retrieves your target event, patches it with all provided attendee emails, and verifies the changes were applied. Each attendee receives a notification about the event, and the recipe confirms successful completion of the batch invitation process.

Can I add attendees to an existing event and notify them?

Absolutely. recipe-batch-invite-to-event is built to update existing Google Calendar events with multiple email invites while automatically sending notifications to all new attendees. This works whether you're adding a few people or managing a large group.

Is recipe-batch-invite-to-event suitable for Google Workspace?

Yes. recipe-batch-invite-to-event works with Google Calendar in Google Workspace environments, allowing teams to efficiently manage bulk attendee invitations and notifications across their organization's calendar infrastructure.

SKILL.md

rendered from the published skill — quoted content, verbatim

Add Multiple Attendees to a Calendar Event

> PREREQUISITE: Load the following skills to execute this recipe: gws-calendar

Add a list of attendees to an existing Google Calendar event and send notifications.

Steps

  1. Get the event: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'
  2. Add attendees: 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"}]}'
  3. Verify attendees: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'

Read as markdown · JSON record · Browse the source repository

File tree — 1 file
skills/recipe-batch-invite-to-event/SKILL.md

Related skills

Tags

bulk-operations attendee-management calendar-automation batch-processing event-coordination notification-workflow multi-user-invite