# Recipe Batch Invite To Event > Add a list of attendees to an existing Google Calendar event and send notifications. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-batch-invite-to-event Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 21 tok installed, 249 tok once triggered, 249 tok with every bundled file Bundle: 1 file, 996 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-batch-invite-to-event --agent claude-code ``` ## What it does - Obtiene un evento existente de Google Calendar con `gws calendar events get` - Añade una lista de asistentes al evento con `gws calendar events patch` usando `sendUpdates: all` para notificarlos - Verifica que los asistentes se agregaron correctamente con una segunda consulta `get` ## Use it when - Cuando quieras añadir varios asistentes a un evento existente de Google Calendar y notificarles por email ## What triggers it - "Añade a alice@company.com, bob@company.com y carol@company.com al evento EVENT_ID y notifícales" - "Agrega estos asistentes al evento de calendario y envía las notificaciones correspondientes" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-calendar`. ## Files - SKILL.md — 996 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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"}'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-batch-invite-to-event