How to move Google calendar event to another person calendar? I tried with Google move API but Unfortunately I am getting 404 not found error.
reference: https://developers.google.com/google-apps/calendar/v3/reference/events/move
Any Idea on this?
*Solution*
:- For Moving Calendar Event from One calendar To another or Change Organiser.
Using ACL API: Call Acl API with Targeted Email by passing the fields,
calendarId: Primary,
scope:{
type: user,
value: Source EmailId
}
Using Move API: Call move Api with Source Email by passing the fields,
calendarId: Primary,
eventId: "",
destination: Targeted Email Id
So It will move to Destination Email Calendar. Thank you.