update_sheet_titles_tool
Rename multiple sheet titles in a Google Spreadsheet by specifying the spreadsheet name, sheet names to update, and their new titles.
Instructions
Update sheet titles in a Google Spreadsheet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_titles | Yes | List of new titles for the sheets | |
sheet_names | Yes | List of sheet names to rename (put only the names of the sheets you want to rename) | |
spreadsheet_name | Yes | The name of the Google Spreadsheet |
Input Schema (JSON Schema)
{
"properties": {
"new_titles": {
"description": "List of new titles for the sheets",
"items": {
"type": "string"
},
"title": "New Titles",
"type": "array"
},
"sheet_names": {
"description": "List of sheet names to rename (put only the names of the sheets you want to rename)",
"items": {
"type": "string"
},
"title": "Sheet Names",
"type": "array"
},
"spreadsheet_name": {
"description": "The name of the Google Spreadsheet",
"title": "Spreadsheet Name",
"type": "string"
}
},
"required": [
"spreadsheet_name",
"sheet_names",
"new_titles"
],
"title": "update_sheet_titles_toolArguments",
"type": "object"
}