# Users - Calendars - Access - [Notes](#Notes) - [API documentation](#api-documentation) - [Definitions](#definitions) - [Calendar selection](#calendar-selection) - [Manage calendar access](#manage-calendar-access) - [Display calendar access](#display-calendar-access) - [Transfer calendar ownership](#transfer-calendar-ownership) ## Notes Calendar ACL roles (as seen in Calendar GUI): * `reader` - See all event details * `writer` & `editor` Make changes to events * `owner` - Make changes to events and manage sharing * `freebusy` & `freebusyreader` - See only free/busy (hide details) ## API documentation * [Calendar API - ACLs](https://developers.google.com/google-apps/calendar/v3/reference/acl) ## Definitions * [``](Collections-of-Users) ``` ::= (.)+ ::= @ ::= ::= "(,)*" ::= ::= |d: ::= "(,)*" ::= active|archived|provisioned|declined ::= all|"(,)*" ::= ::= "(,)*" ::= See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones ::= id: ::= || ::= (backgroundcolor )| (color )| (colorindex|colorid )| (foregroundcolor )| (hidden )| (notification clear|(email ))| (reminder clear|(email|pop )|( email|pop))| (selected )| (summary ) ::= (description )| (location )| (summary )| (timezone ) ::= editor|freebusy|freebusyreader|owner|reader|writer ::= |user:|group:| domain:|domain|default ::= "(,)*" ::= | | | ::= minaccessrole | showdeleted| showhidden ::= allcalendars| primary| | | (courses )| ((courses_with_teacher )|my_courses_as_teacher [coursestates ])| ((courses_with_student )|my_courses_as_student [coursestates ])| (resource )| (resources )| ((calendars ) | | | | )| + ``` ## Calendar selection * `allcalendars` - All calendars in a user's calendar list * `primary` - The user's primary calendar * `` - The address of a calendar in a user's calendar list * `` - The uniqueid of a calendar in a user's calendar list * `courses `- The calendars associated with a list of courses * `courses_with_teacher ` - The calendars associated with courses with `` as a teacher * `my_courses_as_teacher` - The calendars associated with the User from `` as a teacher * `courses_with_student ` - The calendars associated with courses with `` as a student * `my_courses_as_student` - The calendars associated with the User from `` as a student * `coursestates ` - Used with the previous four options to select courses in a particular state; the default is all * `resource ` - The calendar associated with a resource ID * `resources ` - The calendars associated with a list of resource IDs * `calendars ( | | | | )` - A collection of calendars: [Collections of Items](Collections-of-Items) * `+` - The calendars in a user's calendar list with the specified properites ## Manage calendar access ``` gam add calendaracls [sendnotifications ] gam update calendaracls [sendnotifications ] gam delete calendaracls [] ``` By default, when you add or update a calendar ACL, notification is sent to the members referenced in the ``. Use `sendnotifications false` to suppress sending the notification. ## Display calendar access ``` gam info calendaracls [formatjson] gam show calendaracls [noselfowner] [formatjson] ``` Option `noselfowner` suppresses the display of ACLs that reference the calendar itself as its owner. By default, Gam displays the information as an indented list of keys and values. * `formatjson` - Display the fields in JSON format. ``` gam print calendaracls [todrive *] [noselfowner] (addcsvdata )* [formatjson [quotechar ]] ``` Option `noselfowner` suppresses the display of ACLs that reference the calendar itself as its owner. Add additional columns of data from the command line to the output * `addcsvdata ` By default, when writing CSV files, Gam uses a quote character of double quote `"`. The quote character is used to enclose columns that contain the quote character itself, the column delimiter (comma by default) and new-line characters. Any quote characters within the column are doubled. When using the `formatjson` option, double quotes are used extensively in the data resulting in hard to read/process output. The `quotechar ` option allows you to choose an alternate quote character, single quote for instance, that makes for readable/processable output. `quotechar` defaults to `gam.cfg/csv_output_quote_char`. When uploading CSV files to Google, double quote `"` should be used. ## Transfer calendar ownership You can transfer ownership of calendars from one user to another; only non-primary calendars owned by the source user can be transferred. This capability is no longer available, see: https://developers.google.com/workspace/calendar/release-notes#October_27_2025 Data ownership can be transferred in the Google Calendar UI.