The example directly creates an open-ended recurring meeting with a fixed external attendee
Source references: 2The command writes to the `primary` calendar, uses a weekly recurrence with no `COUNT` or `UNTIL`, and names `team@company.com` as an attendee. The steps do not require confirmation of the calendar, recipient, time, or attendee-notification behavior.
If executed literally, it leaves an ongoing weekly series in the user's account, and the fixed address may belong to the wrong or unrelated organization. Depending on Google Calendar or `gws` notification settings, that attendee may also receive an unintended invitation or update.
This is the recipe’s active creation step. If run unchanged, it writes to the current account’s primary calendar, repeats every Monday without an end because the RRULE has no COUNT or UNTIL, and adds team@company.com as an attendee. The address may be a placeholder, and the source does not specify whether Google sends notifications, so it does not prove an external party receives an invitation. Users can require confirmation of the calendar, date, time zone, attendees, and recurrence end, with a parameter preview before creation.
1. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Weekly Standup", "start": {"dateTime": "2024-03-18T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2024-03-18T09:30:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO"], "attendees": [{"email": "team@company.com"}]}'`2. Verify it was created: `gws calendar +agenda --days 14 --format table`Show 1 other places
Create a recurring Google Calendar event with attendees.