Google Super

GOOGLESUPER_DELETE_NAMED_RANGE

Tool to delete a named range from a Google Document. Use when you need to remove a previously defined named range by its ID or name.

Remote googlesuper

Other tools also called GOOGLESUPER_DELETE_NAMED_RANGE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "document_id": {
      "type": "string",
      "title": "Document Id",
      "description": "The ID of the document."
    },
    "deleteNamedRange": {
      "type": "object",
      "title": "Delete Named Range",
      "properties": {
        "name": {
          "type": "string",
          "title": "Name",
          "default": null,
          "nullable": true,
          "description": "The name of the range(s) to delete. All named ranges with the given name will be deleted."
        },
        "namedRangeId": {
          "type": "string",
          "title": "Named Range Id",
          "default": null,
          "nullable": true,
          "description": "The ID of the named range to delete."
        },
        "tabsCriteria": {
          "type": "object",
          "title": "TabsCriteria",
          "default": null,
          "nullable": true,
          "required": [
            "tabIds"
          ],
          "properties": {
            "tabIds": {
              "type": "array",
              "items": {
                "type": "string",
                "properties": {}
              },
              "title": "Tab Ids",
              "description": "The list of tab IDs in which the request executes."
            }
          },
          "description": "Optional. The criteria used to specify which tab(s) the range deletion should occur in. When omitted, the range deletion is applied to all tabs.",
          "additionalProperties": false
        }
      },
      "description": "Specifies the named range to delete.",
      "additionalProperties": false
    }
  }
}