You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
items.id -> user:xxx is single use items.id -> domain:xxx is acl within the domain items.id -> default (not sure), is the global acl (can't seem to access it from the API )
which also matches scope.type
and match those to the 4 ACL types:
"freeBusyReader": The user can read free/busy information.
"owner": The user can read and modify events and access control lists.
"reader": The user can read events that are not private.
Need resource
googleworkspace.calendar.aclRules
(or similar)Possibly this is helpful for implementation:
https://pkg.go.dev/google.golang.org/api/calendar/v3#pkg-index
We need to parse the following API call https://developers.google.com/calendar/api/v3/reference/acl/list?apix_params=%7B%22calendarId%22%3A%22primary%22%7D , for the parameters:
items.id
->user:xxx
is single useitems.id
->domain:xxx
is acl within the domainitems.id
->default
(not sure), is the global acl (can't seem to access it from the API )which also matches
scope.type
and match those to the 4 ACL types:
https://developers.google.com/calendar/api/v3/reference/acl/list?apix_params=%7B%22calendarId%22%3A%22primary%22%7D
Maybe this reference is useful:
https://developers.google.com/calendar/api/v3/reference
The text was updated successfully, but these errors were encountered: