Google Docs

gdoc_insert_table

Insert a new table at a specific position in the document.

Remote node2flow/google-docs

Other tools also called gdoc_insert_table? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "rows": {
      "type": "number",
      "description": "Number of rows in the table"
    },
    "index": {
      "type": "number",
      "description": "Position to insert the table at"
    },
    "columns": {
      "type": "number",
      "description": "Number of columns in the table"
    },
    "segment_id": {
      "type": "string",
      "description": "Segment ID (header/footer ID). Omit for body content"
    },
    "document_id": {
      "type": "string",
      "description": "The document ID"
    }
  }
}