Google Super

GOOGLESUPER_PATCH_CALENDAR

Partially updates (PATCHes) an existing Google Calendar, modifying only the fields provided; `summary` is mandatory and cannot be an empty string, and an empty string for `description` or `location` clears them.

Remote googlesuper

Other tools also called GOOGLESUPER_PATCH_CALENDAR? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "summary": {
      "type": "string",
      "title": "Summary",
      "examples": [
        "Team Meetings",
        "Project Alpha Milestones"
      ],
      "description": "New title for the calendar; cannot be an empty string."
    },
    "location": {
      "type": "string",
      "title": "Location",
      "default": null,
      "examples": [
        "Paris, France",
        "London"
      ],
      "nullable": true,
      "description": "New geographic location of the calendar (e.g., 'Paris, France')."
    },
    "timezone": {
      "type": "string",
      "title": "Timezone",
      "default": null,
      "examples": [
        "Europe/Zurich",
        "America/New_York",
        "Asia/Tokyo"
      ],
      "nullable": true,
      "description": "New IANA Time Zone Database name for the calendar (e.g., 'Europe/Zurich', 'America/New_York')."
    },
    "calendar_id": {
      "type": "string",
      "title": "Calendar Id",
      "examples": [
        "primary",
        "secondaryCalendarIdAbc...",
        "[email protected]"
      ],
      "description": "Identifier of the Google Calendar to update; use 'primary' for the main calendar or a specific ID."
    },
    "description": {
      "type": "string",
      "title": "Description",
      "default": null,
      "nullable": true,
      "description": "New description for the calendar."
    }
  }
}