Google Super
GOOGLESUPER_CREATE_SPREADSHEET_ROW
Inserts a new, empty row into a specified sheet of a Google Spreadsheet at a given index, optionally inheriting formatting from the row above.
Remote googlesuper
Other tools also called GOOGLESUPER_CREATE_SPREADSHEET_ROW?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sheet_id": {
"type": "integer",
"title": "Sheet Id",
"examples": [
0,
123456789
],
"description": "The numeric identifier of the sheet (tab) within the spreadsheet where the row will be inserted. This ID (gid) is found in the URL of the spreadsheet (e.g., '0' for the first sheet)."
},
"insert_index": {
"type": "integer",
"title": "Insert Index",
"default": 0,
"examples": [
0,
5,
100
],
"description": "The 0-based index at which the new row should be inserted. For example, an index of 0 inserts the row at the beginning of the sheet. If the index is greater than the current number of rows, the row is appended."
},
"spreadsheet_id": {
"type": "string",
"title": "Spreadsheet Id",
"examples": [
"1qpyC0XzHc_-_d824s2VfopkHh7D0jW4aXCS1D_AlGA"
],
"description": "The unique identifier of the Google Spreadsheet. This ID is found in the URL of the spreadsheet (e.g., '1qpyC0XzHc_-_d824s2VfopkHh7D0jW4aXCS1D_AlGA')."
},
"inherit_from_before": {
"type": "boolean",
"title": "Inherit From Before",
"default": false,
"examples": [
true,
false
],
"description": "If True, the newly inserted row will inherit formatting and properties from the row immediately preceding its insertion point. If False, it will have default formatting."
}
}
}