Google 将日历事件从一个日历移动到另一个日历的脚本?

Google script to move a calendar event from one calendar to another?

This question 有一个选择的答案不再适用。 (指向死库的链接。)

有没有办法使用 Google 脚本将事件从一个日历移动到另一个日历? developers guide for calendar, I see no such function. Same again for the Advanced Services guide.

里面

是否有将一个日历事件从一个日历移动到另一个日历的功能?

更新

细节是关键。两个日历 ID 的末尾必须包含“@group.calendar.google.com”。事件 ID 不得包含 @google.com.

将活动从一个日历移到另一个日历。

Calendar.Events.move(sourceCalendarId, eventId, destinationCalendarId);

Calendar API v3