recipe-batch-invite-to-event

recipe-batch-invite-to-event

熱門

將多位參與者加入現有的 Google 日曆活動,並發送通知。

2.9萬星標
1669分支
更新於 2026/3/31
SKILL.md
readonlyread-only
name
recipe-batch-invite-to-event
description

將多位參與者加入現有的 Google 日曆活動,並發送通知。

將多位參與者加入日曆活動

先決條件: 載入以下技能以執行此食譜:gws-calendar

將多位參與者加入現有的 Google 日曆活動,並發送通知。

步驟

  1. 取得活動:gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'
  2. 加入參與者: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. 驗證參與者:gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'