Google Calendar

update_event

Updates an existing event

Input Schema

NameRequiredDescriptionDefault
descriptionNoNew event description
endNo
eventIdYesID of the event to update
locationNoNew event location
startNo
summaryNoNew event title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "New event description", "type": "string" }, "end": { "additionalProperties": false, "properties": { "dateTime": { "description": "New end time (ISO format)", "type": "string" }, "timeZone": { "description": "Time zone", "type": "string" } }, "required": [ "dateTime" ], "type": "object" }, "eventId": { "description": "ID of the event to update", "type": "string" }, "location": { "description": "New event location", "type": "string" }, "start": { "additionalProperties": false, "properties": { "dateTime": { "description": "New start time (ISO format)", "type": "string" }, "timeZone": { "description": "Time zone", "type": "string" } }, "required": [ "dateTime" ], "type": "object" }, "summary": { "description": "New event title", "type": "string" } }, "required": [ "eventId" ], "type": "object" }