update_table_title_tool
Modify the title of a table in Google Sheets without altering its structure or data. Specify the spreadsheet, sheet, current table name, and the new title to update it. Returns JSON with success status and details.
Instructions
Update a table title in Google Sheets.
This tool allows you to update the title of an existing table.
The table structure and data remain unchanged.
Args:
spreadsheet_name: Name of the spreadsheet
sheet_name: Name of the sheet containing the table
old_table_name: Current name of the table to update
new_table_name: New title for the table
Returns:
JSON string with success status and update details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_table_name | Yes | New title for the table | |
old_table_name | Yes | Current name of the table to update | |
sheet_name | Yes | The name of the sheet containing the table | |
spreadsheet_name | Yes | The name of the Google Spreadsheet |
Input Schema (JSON Schema)
{
"properties": {
"new_table_name": {
"description": "New title for the table",
"title": "New Table Name",
"type": "string"
},
"old_table_name": {
"description": "Current name of the table to update",
"title": "Old Table Name",
"type": "string"
},
"sheet_name": {
"description": "The name of the sheet containing the table",
"title": "Sheet Name",
"type": "string"
},
"spreadsheet_name": {
"description": "The name of the Google Spreadsheet",
"title": "Spreadsheet Name",
"type": "string"
}
},
"required": [
"spreadsheet_name",
"sheet_name",
"old_table_name",
"new_table_name"
],
"title": "update_table_title_toolArguments",
"type": "object"
}