Change Google Calendar Event Free/Busy with Calendar API
问题 I have a GAS web app for reserving rooms. When the app creates the event, it currently defaults to "Busy" for the event. I am trying to set the default to "Free". I found a GAS forum entry that recommends using the Advanced Google Calendar API to edit the transparency field (Source: https://code.google.com/p/google-apps-script-issues/issues/detail?id=2341). The script they suggested was var changes = { transparency: "transparent" }; Calendar.Events.patch(changes, cal_id, event_id); I have the