Van
Van

Reputation: 302

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

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

Answers (1)

Cooper
Cooper

Reputation: 64052

Move event from one calendar to another.

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

Calendar API v3

Upvotes: 2

Related Questions