Change fields of an owned event
update_eventUpdate an event owned by the authenticated user. Pass id plus any fields to change. start and end are ISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone. A missing id and an id owned by someone else both return not found. waitSync defaults to true and waits for the external calendar so the response can include links; false responds immediately and links may be absent.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Event id owned by the authenticated user; any other id returns not found | |
| end | No | ISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone | |
| desc | No | Description (up to 1000 characters) | |
| type | No | event is a timed item; task is a to-do without a duration | |
| rrule | No | iCalendar RRULE string for a repeating event | |
| start | No | ISO 8601 date-time with offset, or YYYY-MM-DD for an all-day event in the event timezone | |
| title | No | Event or task title (1–200 characters) | |
| allDay | No | True when start and end are calendar dates without a time | |
| status | No | Event status: active, done, undone, or cancelled | |
| location | No | Short place name | |
| timezone | No | IANA timezone of the event; stored as-is, not replaced by the user timezone | |
| waitSync | No | Wait for the external calendar so the response can include links; default true | |
| calendarId | No | Calendar that owns the event; omit for the default calendar |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Event id | |
| end | No | End in the user timezone (ISO 8601) | |
| desc | No | Description | |
| type | No | event is a timed item; task is a to-do without a duration | |
| links | No | External calendar links when sync has finished | |
| rrule | No | iCalendar RRULE string when the event repeats | |
| start | No | Start in the user timezone (ISO 8601) | |
| title | Yes | Event or task title | |
| allDay | No | True when the event is a calendar date without a time | |
| status | No | Event status: active, done, undone, or cancelled | |
| location | No | Short place name | |
| timezone | No | IANA timezone stored on the event | |
| createdAt | No | When the event was created (ISO 8601) | |
| updatedAt | No | When the event was last changed (ISO 8601) | |
| calendarId | No | Calendar that owns the event |