Sign in

Update ACL rule

documented

Updates an ACL rule (patch semantics) for the calendar.

PATCH /calendars/{calendarId}/acl/{ruleId}Aclno implementation yet0 runs
No 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/{{$calendar_id}}/acl/{{$rule_id}}?sendNotifications={{$send_notifications}}" \
  -X PATCH \
  -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}}"}'