calendar-update-event
Modify existing Google Calendar events by updating details such as title, description, location, time, and attendees to keep your schedule current and accurate.
Instructions
Update an existing calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attendees | No | Array of attendee email addresses | |
calendarId | No | Calendar ID - Available options: 'primary' (Primary Calendar) | primary |
description | No | Event description | |
endDateTime | No | End date/time in ISO format | |
eventId | Yes | Event ID | |
location | No | Event location | |
startDateTime | No | Start date/time in ISO format | |
summary | No | Event title/summary |
Input Schema (JSON Schema)
{
"properties": {
"attendees": {
"description": "Array of attendee email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"calendarId": {
"default": "primary",
"description": "Calendar ID - Available options: 'primary' (Primary Calendar)",
"type": "string"
},
"description": {
"description": "Event description",
"type": "string"
},
"endDateTime": {
"description": "End date/time in ISO format",
"type": "string"
},
"eventId": {
"description": "Event ID",
"type": "string"
},
"location": {
"description": "Event location",
"type": "string"
},
"startDateTime": {
"description": "Start date/time in ISO format",
"type": "string"
},
"summary": {
"description": "Event title/summary",
"type": "string"
}
},
"required": [
"eventId"
],
"type": "object"
}