recipe-batch-invite-to-event

recipe-batch-invite-to-event

热门

向现有的 Google 日历活动添加参与者列表并发送通知。

2.9万Star
1669Fork
更新于 2026/3/31
SKILL.md
只读
名称
recipe-batch-invite-to-event
描述

向现有的 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"}'