Google Docs
GOOGLEDOCS_DELETE_TABLE_ROW
Tool to delete a row from a table in a Google Document. Use when you need to remove a specific row from an existing table.
Remote googledocs
Other tools also called GOOGLEDOCS_DELETE_TABLE_ROW?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"documentId": {
"type": "string",
"title": "Document Id",
"examples": [
"195j9eDD34F53d2g2HMJ-N0kKc_P8tq3/edit"
],
"description": "The ID of the document."
},
"tableCellLocation": {
"type": "object",
"title": "Table Cell Location",
"required": [
"tableStartLocation",
"rowIndex",
"columnIndex"
],
"properties": {
"rowIndex": {
"type": "integer",
"title": "Row Index",
"examples": [
1
],
"description": "The zero-based row index. For example, the second row in the table has a row index of 1."
},
"columnIndex": {
"type": "integer",
"title": "Column Index",
"examples": [
1
],
"description": "The zero-based column index. For example, the second column in the table has a column index of 1."
},
"tableStartLocation": {
"type": "object",
"title": "Table Start Location",
"properties": {
"index": {
"type": "integer",
"title": "Index",
"default": null,
"examples": [
100
],
"nullable": true,
"description": "The zero-based index, in UTF-16 code units. The index is relative to the beginning of the segment specified by segment_id."
},
"tabId": {
"type": "string",
"title": "Tab Id",
"default": null,
"examples": [
"tab_id1"
],
"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,
"examples": [
"header_id1"
],
"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 the row will be deleted.",
"additionalProperties": false
}
}
}