Sign in

Import event

documented

Imports an event into a calendar (private copy of an existing event).

POST /calendars/{calendarId}/events/importEventsno 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}}/events/import?conferenceDataVersion={{conferenceDataVersion}}&supportsAttachments={{supportsAttachments}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"start": {"dateTime": "{{$startDateTime}}", "timeZone": "{{$timeZone}}"}, "end": {"dateTime": "{{$endDateTime}}", "timeZone": "{{$timeZone}}"}, "iCalUID": "{{$ical_uid}}", "summary": "{{$title}}", "description": "{{$description}}"}'