Google Super
GOOGLESUPER_APPEND_DIMENSION
Tool to append new rows or columns to a sheet, increasing its size. Use when you need to add empty rows or columns to an existing sheet.
Remote googlesuper
Other tools also called GOOGLESUPER_APPEND_DIMENSION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"length": {
"type": "integer",
"title": "Length",
"examples": [
10
],
"description": "The number of rows or columns to append."
},
"sheet_id": {
"type": "integer",
"title": "Sheet Id",
"examples": [
0
],
"description": "The ID of the sheet to append rows or columns to."
},
"dimension": {
"enum": [
"ROWS",
"COLUMNS"
],
"type": "string",
"title": "Dimension",
"examples": [
"ROWS"
],
"description": "Specifies whether to append rows or columns."
},
"spreadsheet_id": {
"type": "string",
"title": "Spreadsheet Id",
"examples": [
"1q2w3e4r5t6y7u8i9o0p"
],
"description": "The ID of the spreadsheet."
}
}
}