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
Decision gist · record as of 2026-07-22
recipe-batch-invite-to-event adds multiple attendees to an existing Google Calendar event and notifies them. 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.
Use it when
- Yes.
- recipe-batch-invite-to-event retrieves your target event, patches it with all provided attendee emails.
Verify before relying
Read SKILL.md below before installing (1 file). Open directory: indexed for reading, not audited.
Install
googleworkspace/cli/recipe-batch-invite-to-event · repository language: Rust
Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.
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
- Get the event:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' - 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"}]}' - Verify attendees:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'
File tree — 1 file
skills/recipe-batch-invite-to-event/SKILL.md
Let your AI agent find skills like this
Example. Real query, live index.
You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.
wish › “Add multiple attendees to a Google Calendar event in batch”
Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →
Related skills
This recipe automates moving Google Calendar events to different times while sending updates to all attendees. It chains calendar lookup, event retrieval, and time-change operations into a single workflow.
This recipe automates file distribution by retrieving attendees from a Google Calendar event and granting them access to specified Google Drive files. It uses the gws-calendar and gws-drive skills to fetch event details and manage sharing permissions.
Google Calendar integrates with gws to let you browse your agenda, schedule new events with attendees, query availability windows, and handle RSVPs. Works on macOS and Linux with Google Workspace OAuth credentials and the gws CLI tool.
This recipe automates setup of repeating calendar meetings in Google Calendar, adding attendees and configuring recurrence rules in a single operation. It builds on the gws-calendar skill to handle the full workflow.
Integrate your Google Calendar into workflows to list events, build agendas, check availability, and create or modify meetings. The skill uses the Calendar v3 REST API with OAuth authentication, supporting both read-only and read-write operations depending on your permission level. Confirm destructive actions before attendee notifications are sent.
This recipe queries Google Calendar's free/busy status across multiple users to identify shared availability windows. It retrieves busy/free data for a specified time range, then helps you spot overlapping open slots where all attendees can meet.
More skills recipe-block-focus-time (Apache-2.0) · recipe-create-events-from-sheet (Apache-2.0) · recipe-post-mortem-setup (Apache-2.0) · Google Workspace Cli (unlicensed) · persona-project-manager (Apache-2.0)