Sign in

Create ACL rule

documented

Creates an access control rule for the calendar.

POST /calendars/{calendarId}/aclAclno 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/{{$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}}"}'