Create ACL rule
documentedCreates an access control rule for the calendar.
POST /calendars/{calendarId}/aclAclno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://www.googleapis.com/calendar/v3/calendars/{{$calendarId}}/acl?sendNotifications={{sendNotifications}}" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"scope": {"type": "{{$scope_type}}", "value": "{{$scope_value}}"}, "role": "{{$role}}"}'