Google Super

GOOGLESUPER_CALENDAR_LIST_INSERT

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

Remote googlesuper

Other tools also called GOOGLESUPER_CALENDAR_LIST_INSERT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "examples": [
        "[email protected]"
      ],
      "description": "The identifier of the calendar to insert."
    },
    "hidden": {
      "type": "boolean",
      "title": "Hidden",
      "default": null,
      "nullable": true,
      "description": "Whether the calendar has been hidden from the list. Default is False."
    },
    "color_id": {
      "type": "string",
      "title": "Color Id",
      "default": null,
      "examples": [
        "1"
      ],
      "nullable": true,
      "description": "The color of the calendar. This is an ID referring to an entry in the calendarCore color palette."
    },
    "selected": {
      "type": "boolean",
      "title": "Selected",
      "default": null,
      "nullable": true,
      "description": "Whether the calendar is selected and visible in the calendar list. Default is True."
    },
    "background_color": {
      "type": "string",
      "title": "Background Color",
      "default": null,
      "examples": [
        "#000000"
      ],
      "nullable": true,
      "description": "The background color of the calendar in the Web UI. (Hexadecimal color code)"
    },
    "color_rgb_format": {
      "type": "boolean",
      "title": "Color Rgb Format",
      "default": null,
      "nullable": true,
      "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",
      "title": "Foreground Color",
      "default": null,
      "examples": [
        "#FFFFFF"
      ],
      "nullable": true,
      "description": "The foreground color of the calendar in the Web UI. (Hexadecimal color code)"
    },
    "summary_override": {
      "type": "string",
      "title": "Summary Override",
      "default": null,
      "nullable": true,
      "description": "The summary that the authenticated user has set for this calendar."
    },
    "default_reminders": {
      "type": "array",
      "items": {
        "type": "object",
        "title": "EventReminder",
        "required": [
          "method",
          "minutes"
        ],
        "properties": {
          "method": {
            "type": "string",
            "title": "Method",
            "description": "The method used by this reminder (e.g., 'email', 'popup')."
          },
          "minutes": {
            "type": "integer",
            "title": "Minutes",
            "description": "Number of minutes before the start of the event when the reminder should trigger."
          }
        }
      },
      "title": "Default Reminders",
      "default": null,
      "nullable": true,
      "description": "The default reminders that the authenticated user has for this calendar."
    },
    "notification_settings": {
      "type": "object",
      "title": "NotificationSetting",
      "default": null,
      "nullable": true,
      "properties": {
        "notifications": {
          "type": "array",
          "items": {
            "type": "object",
            "title": "Notification",
            "required": [
              "type",
              "method"
            ],
            "properties": {
              "type": {
                "type": "string",
                "title": "Type",
                "description": "The type of notification (e.g., 'eventCreation', 'eventChange')."
              },
              "method": {
                "type": "string",
                "title": "Method",
                "description": "The method used by this notification (e.g., 'email')."
              }
            }
          },
          "title": "Notifications",
          "default": null,
          "nullable": true,
          "description": "The list of notifications."
        }
      },
      "description": "The notifications that the authenticated user is receiving for this calendar.",
      "additionalProperties": false
    }
  }
}