Create event
documentedCreates a new event on the calendar.
POST /calendars/{calendarId}/eventsEventsno 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" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"summary": "{{$title}}", "location": "{{$location}}", "description": "{{$description}}", "start": {"dateTime": "{{$startDateTime}}", "timeZone": "{{$timeZone}}"}, "end": {"dateTime": "{{$endDateTime}}", "timeZone": "{{$timeZone}}"}, "attendees": [{"email": "{{$attendee_email}}"}, {"email": "{{$attendee_email2}}"}], "reminders": {"useDefault": false, "overrides": [{"method": "popup", "minutes": 10}]}}'