Google Calendar
gcal_update_calendar_entry
Update display settings for a calendar in the user's list. Changes color, display name, visibility, and default reminders.
Remote node2flow/google-calendar
Other tools also called gcal_update_calendar_entry?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"hidden": {
"type": "boolean",
"description": "Whether to hide this calendar"
},
"color_id": {
"type": "string",
"description": "New display color ID"
},
"selected": {
"type": "boolean",
"description": "Whether events are shown by default"
},
"calendar_id": {
"type": "string",
"description": "Calendar ID to update settings for"
},
"summary_override": {
"type": "string",
"description": "Custom display name override"
},
"default_reminders": {
"type": "array",
"items": {
"type": "object",
"properties": {
"method": {
"type": "string",
"description": "Reminder method: \"email\" or \"popup\""
},
"minutes": {
"type": "number",
"description": "Minutes before event to trigger reminder"
}
}
},
"description": "Default reminders for events on this calendar"
}
}
}