Google Calendar

GOOGLECALENDAR_EVENTS_WATCH

Watch for changes to Events resources.

Remote googlecalendar

Other tools also called GOOGLECALENDAR_EVENTS_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: \"01234567-89ab-cdef-0123456789ab\""
    },
    "type": {
      "type": "string",
      "default": "web_hook",
      "description": "The type of delivery mechanism used for this channel.\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. Optional.\nExample: \"target=myApp-myCalendarChannelDest\""
    },
    "params": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "ttl": {
              "type": [
                "string",
                "null"
              ],
              "default": null,
              "description": "Time To Live for the notification channel."
            }
          },
          "additionalProperties": false
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Additional parameters controlling delivery channel behavior. Optional."
    },
    "address": {
      "type": "string",
      "description": "The address where notifications are delivered for this channel.\nExample: \"https://example.com/notifications\""
    },
    "payload": {
      "type": [
        "boolean",
        "null"
      ],
      "default": null,
      "description": "A Boolean value to indicate whether payload is wanted. Optional."
    },
    "calendarId": {
      "type": "string",
      "description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.\nExample: \"primary\""
    }
  }
}