Google Super
GOOGLESUPER_CALENDAR_LIST_UPDATE
Updates an existing entry on the user\'s calendar list.
Remote googlesuper
Other tools also called GOOGLESUPER_CALENDAR_LIST_UPDATE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"hidden": {
"type": "boolean",
"title": "Hidden",
"default": null,
"examples": [
true,
false
],
"nullable": true,
"description": "Whether calendar is hidden."
},
"colorId": {
"type": "string",
"title": "Color Id",
"default": null,
"examples": [
"17"
],
"nullable": true,
"description": "ID for calendar color from colors endpoint."
},
"selected": {
"type": "boolean",
"title": "Selected",
"default": null,
"examples": [
true,
false
],
"nullable": true,
"description": "Whether calendar content shows in UI."
},
"calendar_id": {
"type": "string",
"title": "Calendar Id",
"examples": [
"[email protected]"
],
"description": "Calendar identifier. Must be an actual calendar ID (e.g., calendar email address like \"[email protected]\"). The \"primary\" alias is not valid for calendarList.update - use the actual calendar ID."
},
"colorRgbFormat": {
"type": "boolean",
"title": "Color Rgb Format",
"default": null,
"examples": [
true,
false
],
"nullable": true,
"description": "Whether to use RGB for foreground/background colors."
},
"backgroundColor": {
"type": "string",
"title": "Background Color",
"default": null,
"examples": [
"#0088aa"
],
"nullable": true,
"description": "Hex color for calendar background."
},
"foregroundColor": {
"type": "string",
"title": "Foreground Color",
"default": null,
"examples": [
"#ffffff"
],
"nullable": true,
"description": "Hex color for calendar foreground."
},
"summaryOverride": {
"type": "string",
"title": "Summary Override",
"default": null,
"examples": [
"My Work Calendar"
],
"nullable": true,
"description": "User-set summary for the calendar."
},
"defaultReminders": {
"type": "array",
"items": {
"type": "object",
"title": "Reminder",
"required": [
"method",
"minutes"
],
"properties": {
"method": {
"type": "string",
"title": "Method",
"description": "Method for the reminder (e.g., email, popup)."
},
"minutes": {
"type": "integer",
"title": "Minutes",
"description": "Minutes before event for reminder."
}
}
},
"title": "Default Reminders",
"default": null,
"nullable": true,
"description": "List of default reminders."
},
"notificationSettings": {
"type": "object",
"title": "NotificationSettings",
"default": null,
"nullable": true,
"properties": {
"notifications": {
"type": "array",
"items": {
"type": "object",
"title": "Notification",
"required": [
"method",
"type"
],
"properties": {
"type": {
"type": "string",
"title": "Type",
"description": "Type of notification (e.g., eventCreation)."
},
"method": {
"type": "string",
"title": "Method",
"description": "Method for the notification (e.g., email)."
}
}
},
"title": "Notifications",
"default": null,
"nullable": true,
"description": "List of notifications."
}
},
"description": "Notification settings for the calendar.",
"additionalProperties": false
}
}
}