update_event
Change Google Calendar event details by updating specified fields like start time, end time, title, description, or location while preserving unspecified information.
Instructions
Updates an event by replacing specified fields with new values. Any fields not included in the request will retain their existing values.
Args: event_id (str): Event identifier. start (str, optional): Event start time in ISO 8601 format (e.g., '2025-04-06T10:00:00-04:00'). Defaults to None. end (str, optional): Event end time in ISO 8601 format (e.g., '2025-04-06T11:00:00-04:00'). Defaults to None. timeZone (str, optional): User timezone formatted as an IANA Time Zone Database name (e.g. "Europe/Zurich"). Defaults to None. summary (str, optional): Short title or subject of the event. Defaults to None. description (str, optional): Detailed description or notes for the event. Defaults to None. location (str, optional): Physical or virtual location of the event. Defaults to None.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ||
| start | No | ||
| summary | No | ||
| event_id | Yes | ||
| location | No | ||
| timeZone | No | ||
| description | No |