recipe-schedule-recurring-event

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Schedule a Recurring Meeting

安排重复会议

PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Create a recurring Google Calendar event with attendees.
前提条件: 加载以下技能以执行此方案:
gws-calendar
创建带有参会者的重复Google Calendar活动。

Steps

步骤

  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
  1. 创建重复活动:
    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. 验证活动已创建:
    gws calendar +agenda --days 14 --format table