Google Calendar

GOOGLECALENDAR_CALENDAR_LIST_INSERT

Inserts an existing calendar into the user's calendar list.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_CALENDAR_LIST_INSERT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The identifier of the calendar to insert.\nExample: \"[email protected]\""
    },
    "hidden": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "Whether the calendar has been hidden from the list. Default is False."
    },
    "color_id": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "The color of the calendar. This is an ID referring to an entry in the calendarCore color palette.\nExample: \"1\""
    },
    "selected": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "Whether the calendar is selected and visible in the calendar list. Default is True."
    },
    "background_color": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "The background color of the calendar in the Web UI. (Hexadecimal color code)\nExample: \"#000000\""
    },
    "color_rgb_format": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "Whether to use the foregroundColor and backgroundColor fields to write the calendar colors (RGB). If this feature is used, the index-based colorId field will be set to the best matching option automatically. Optional. The default is False."
    },
    "foreground_color": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "The foreground color of the calendar in the Web UI. (Hexadecimal color code)\nExample: \"#FFFFFF\""
    },
    "summary_override": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "The summary that the authenticated user has set for this calendar."
    },
    "default_reminders": {
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "method",
              "minutes"
            ],
            "properties": {
              "method": {
                "type": "string",
                "description": "The method used by this reminder (e.g., 'email', 'popup')."
              },
              "minutes": {
                "type": "integer",
                "description": "Number of minutes before the start of the event when the reminder should trigger."
              }
            },
            "description": "EventReminder",
            "additionalProperties": false
          }
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "The default reminders that the authenticated user has for this calendar."
    },
    "notification_settings": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "notifications": {
              "anyOf": [
                {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "required": [
                      "method",
                      "type"
                    ],
                    "properties": {
                      "type": {
                        "type": "string",
                        "description": "The type of notification (e.g., 'eventCreation', 'eventChange')."
                      },
                      "method": {
                        "type": "string",
                        "description": "The method used by this notification (e.g., 'email')."
                      }
                    },
                    "description": "Notification",
                    "additionalProperties": false
                  }
                },
                {
                  "type": "null"
                }
              ],
              "default": null,
              "description": "The list of notifications."
            }
          },
          "additionalProperties": false
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "The notifications that the authenticated user is receiving for this calendar."
    }
  }
}