Google Calendar

GOOGLECALENDAR_SETTINGS_WATCH

Watch for changes to Settings resources.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_SETTINGS_WATCH? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "A UUID or similar unique string that identifies this channel.\nExample: \"channel-ID-1\""
    },
    "type": {
      "type": "string",
      "description": "The type of delivery mechanism used for this channel. Valid values are \"web_hook\" (or \"webhook\").\nExample: \"web_hook\""
    },
    "token": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "An arbitrary string delivered to the target address with each notification delivered over this channel.\nExample: \"token-string\""
    },
    "params": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "ttl": {
              "type": [
                "string",
                "null"
              ],
              "default": null,
              "description": "The time-to-live in seconds for the notification channel. Default is 604800 seconds.\nExample: \"3600\""
            }
          },
          "additionalProperties": false
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Additional parameters controlling delivery channel behavior."
    },
    "address": {
      "type": "string",
      "description": "The address where notifications are delivered for this channel.\nExample: \"https://example.com/notifications\""
    }
  }
}