update_spreadsheet_title_tool
Rename Google Spreadsheets by specifying the current name and new title. Quickly update spreadsheet titles for better organization and clarity.
Instructions
Update a Google Spreadsheet title.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_title | Yes | The new title for the spreadsheet | |
spreadsheet_name | Yes | The name of the spreadsheet to rename |
Input Schema (JSON Schema)
{
"properties": {
"new_title": {
"description": "The new title for the spreadsheet",
"title": "New Title",
"type": "string"
},
"spreadsheet_name": {
"description": "The name of the spreadsheet to rename",
"title": "Spreadsheet Name",
"type": "string"
}
},
"required": [
"spreadsheet_name",
"new_title"
],
"title": "update_spreadsheet_title_toolArguments",
"type": "object"
}