Home > Software design >  How to add editor in your event?
How to add editor in your event?

Time:10-31

i want to create event and add editing rights for one person in it, i know how to add guests:

event.addGuest("guest email");

you can add edditor in spredsheet:

sheet.addEditor("editor email")

can you do something same for event?

CodePudding user response:

Google Calendar doesn't use the term "editors", the details are explained on the Sharing and Attendees section of the Google Calendar API documentation. In summary, to allow others to edit your event but not give this privilege to all the event guests, you have to create a calendar, share it with the "editors" and give the permissions to edit the events.

In order to be able to handle the Google Calendar Sharing features you might use Advanced Calendar Service or access the Google Calendar API by using the Fetch Service (UrlFetchApp).

Related

  • Related