Google Docs

gdoc_create_named_range

Create a named range in the document for referencing a section of content.

Remote node2flow/google-docs

Other tools also called gdoc_create_named_range? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the range (used for referencing later)"
    },
    "end_index": {
      "type": "number",
      "description": "End index of the range (exclusive)"
    },
    "segment_id": {
      "type": "string",
      "description": "Segment ID. Omit for body content"
    },
    "document_id": {
      "type": "string",
      "description": "The document ID"
    },
    "start_index": {
      "type": "number",
      "description": "Start index of the range (inclusive)"
    }
  }
}