Google Docs

GOOGLEDOCS_CREATE_NAMED_RANGE

Tool to create a new named range in a Google Document. Use this to assign a name to a specific part of the document for easier reference or programmatic manipulation.

Remote googledocs

Other tools also called GOOGLEDOCS_CREATE_NAMED_RANGE? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name",
      "examples": [
        "Chapter1Intro",
        "ImportantSection"
      ],
      "maxLength": 256,
      "minLength": 1,
      "description": "The name for the new named range. Must be 1-256 characters."
    },
    "documentId": {
      "type": "string",
      "title": "Document Id",
      "examples": [
        "1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789_AbCdEf"
      ],
      "description": "The ID of the document where the named range will be created."
    },
    "rangeEndIndex": {
      "type": "integer",
      "title": "Range End Index",
      "minimum": 0,
      "examples": [
        200
      ],
      "description": "The zero-based end index of the range."
    },
    "rangeSegmentId": {
      "type": "string",
      "title": "Range Segment Id",
      "default": null,
      "examples": [
        "h.1a2b3c4d5e6f",
        ""
      ],
      "nullable": true,
      "description": "Optional. The ID of the header, footer, or footnote. Empty for document body."
    },
    "rangeStartIndex": {
      "type": "integer",
      "title": "Range Start Index",
      "minimum": 0,
      "examples": [
        100
      ],
      "description": "The zero-based start index of the range."
    }
  }
}