SKILL.md
readonlyread-only
name
recipe-batch-invite-to-event
description
將多位參與者加入現有的 Google 日曆活動,並發送通知。
將多位參與者加入日曆活動
先決條件: 載入以下技能以執行此食譜:
gws-calendar
將多位參與者加入現有的 Google 日曆活動,並發送通知。
步驟
- 取得活動:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' - 加入參與者:
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"}]}' - 驗證參與者:
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'






