Skip to main content
Update an existing calendar event

Tool details

FieldValue
Namecalendar__update_event
GroupIntegrations

Playground

Input schema

Input schema
{
  "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."
}

Output schema

This tool does not publish an output schema.