Sign in

Update calendar in user calendar list

documented

Updates an existing calendar on the user's calendar list.

PUT /users/me/calendarList/{calendarId}CalendarListno 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/users/me/calendarList/{{$calendarId}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"backgroundColor": "{{$backgroundColor}}", "colorId": "{{$colorId}}", "foregroundColor": "{{$foregroundColor}}", "hidden": {{$hidden}}, "selected": {{$selected}}, "summaryOverride": "{{$summaryOverride}}", "defaultReminders": {{$defaultReminders}}, "notificationSettings": {{$notificationSettings}}}'