Google Docs
GOOGLEDOCS_DELETE_TABLE
Tool to delete an entire table from a Google Document. Use when you have the document ID and the specific start and end index of the table element to be removed. The table's range can be found by inspecting the document's content structure.
Remote googledocs
Other tools also called GOOGLEDOCS_DELETE_TABLE?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"tab_id": {
"type": "string",
"title": "Tab Id",
"default": null,
"examples": [
"sheet1"
],
"nullable": true,
"description": "The ID of the tab containing the table, if the document uses tabs. If omitted, the action applies to the first tab or the only tab."
},
"segment_id": {
"type": "string",
"title": "Segment Id",
"default": null,
"examples": [
"kix.header.1a2b3c"
],
"nullable": true,
"description": "The ID of the segment (e.g., header, footer) containing the table. If omitted or empty, the table is assumed to be in the main document body."
},
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"1a2B3c4D5e6F7g8H9i0J"
],
"description": "The ID of the Google Document from which the table will be deleted."
},
"table_end_index": {
"type": "integer",
"title": "Table End Index",
"examples": [
150
],
"description": "The end index (UTF-16 code unit) of the table's range to be deleted."
},
"table_start_index": {
"type": "integer",
"title": "Table Start Index",
"examples": [
100
],
"description": "The start index (UTF-16 code unit) of the table's range to be deleted."
}
}
}