Reputation: 302
This question has a selected answer that no longer applies. (Links to a dead library.)
Is there a way to use Google script to move an event from one calendar to another? Inside the developers guide for calendar, I see no such function. Same again for the Advanced Services guide.
Is there a function to move one calendar event from one calendar to another?
Update
Details are key. the two calendar ID's must contain '@group.calendar.google.com' at the end. The event ID must NOT contain @google.com.
Upvotes: 0
Views: 259
Reputation: 64052
Move event from one calendar to another.
Calendar.Events.move(sourceCalendarId, eventId, destinationCalendarId);
Upvotes: 2