Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Update an existing calendar event
calendar__update_event
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Calendar ID" }, "eventId": { "type": "string", "description": "Event ID to update" }, "sendUpdates": { "type": "string", "description": "Whether to send update notifications: all, externalOnly, or none" }, "summary": { "type": "string", "description": "Updated event title" }, "description": { "type": "string", "description": "Updated event description" }, "start": { "type": "object", "description": "Updated start time: {dateTime: 'RFC3339', timeZone: 'TZ'}" }, "end": { "type": "object", "description": "Updated end time: {dateTime: 'RFC3339', timeZone: 'TZ'}" }, "attendees": { "type": "array", "description": "Updated array of {email: string} attendees" }, "location": { "type": "string", "description": "Updated event location" } }, "required": [ "calendarId", "eventId" ], "description": "Input schema for the calendar__update_event tool." }