Replace event
documentedUpdates an event (full update).
PUT /calendars/{calendarId}/events/{eventId}Eventsno 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}}/events/{{$eventId}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"summary": "{{$title}}", "description": "{{$description}}", "start": {"dateTime": "{{$startDateTime}}", "timeZone": "{{$timeZone}}"}, "end": {"dateTime": "{{$endDateTime}}", "timeZone": "{{$timeZone}}"}, "location": "{{$location}}", "attendees": [{"email": "{{$attendee1Email}}"}], "guestsCanInviteOthers": true}'