The command immediately sends event updates to every listed address
Source references: 2The patch makes the addresses attendees and explicitly sets `sendUpdates` to `all`. Calendar invitations or updates can therefore deliver event information to external inboxes, without a required confirmation of the final addresses, event, or disclosed content.
A wrong event ID or email address could disclose the meeting subject, timing, participation, and invitation content to unintended people, while also sending messages in the user's name.
This is an active calendar-modification step, and `sendUpdates: "all"` explicitly requests attendee updates. Notifications are part of the stated purpose, not hidden behavior; however, the recipe has no confirmation of the event, final addresses, or disclosed event content before sending. Once placeholders are replaced, a mistaken or external recipient could receive the event. The source shows an instruction to request sending, not that it ran or delivery occurred. A user can require a final event and recipient preview before the patch.
Add a list of attendees to an existing Google Calendar event and send notifications.Show 1 other places
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"}'`