Google Docs
GOOGLEDOCS_INSERT_TABLE_COLUMN
Tool to insert a new column into a table in a Google Document. Use this tool when you need to add a column to an existing table at a specific location.
Remote googledocs
Other tools also called GOOGLEDOCS_INSERT_TABLE_COLUMN?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"requests": {
"type": "array",
"items": {
"type": "object",
"title": "InsertTableColumnRequestDetails",
"required": [
"insertTableColumn"
],
"properties": {
"insertTableColumn": {
"type": "object",
"title": "Insert Table Column",
"required": [
"tableCellLocation"
],
"properties": {
"insertRight": {
"type": "boolean",
"title": "Insert Right",
"default": false,
"nullable": true,
"description": "Whether to insert new column to the right of the reference cell location. True: insert to the right. False: insert to the left."
},
"tableCellLocation": {
"type": "object",
"title": "Table Cell Location",
"required": [
"rowIndex",
"columnIndex"
],
"properties": {
"rowIndex": {
"type": "integer",
"title": "Row Index",
"examples": [
0
],
"description": "The zero-based row index of the reference cell."
},
"columnIndex": {
"type": "integer",
"title": "Column Index",
"examples": [
0
],
"description": "The zero-based column index of the reference cell."
},
"tableStartLocation": {
"type": "object",
"title": "Location",
"default": null,
"nullable": true,
"properties": {
"index": {
"type": "integer",
"title": "Index",
"default": null,
"nullable": true,
"description": "The zero-based index, in UTF-16 code units, relative to the beginning of the segment."
},
"tabId": {
"type": "string",
"title": "Tab Id",
"default": null,
"nullable": true,
"description": "The tab that the location is in. When omitted, the request is applied to the first tab."
},
"segmentId": {
"type": "string",
"title": "Segment Id",
"default": null,
"nullable": true,
"description": "The ID of the header, footer or footnote the location is in. An empty segment ID signifies the document's body."
}
},
"description": "The location where the table starts in the document.",
"additionalProperties": false
}
},
"description": "The reference table cell location from which columns will be inserted.",
"additionalProperties": false
}
},
"additionalProperties": false
}
}
},
"title": "Requests",
"description": "A list of requests to be applied to the document. For this action, it will contain one InsertTableColumnRequest."
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"1aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789"
],
"description": "The ID of the document to update."
}
}
}