Google Sheets
GOOGLESHEETS_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 googlesheets
Other tools also called GOOGLESHEETS_CREATE_SPREADSHEET_ROW?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sheet_id": {
"type": "integer",
"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).\nExamples:\n 0\n 123456789"
},
"insert_index": {
"type": "integer",
"default": 0,
"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.\nExamples:\n 0\n 5\n 100"
},
"spreadsheet_id": {
"type": "string",
"description": "The unique identifier of the Google Spreadsheet. This ID is found in the URL of the spreadsheet (e.g., '1qpyC0XzHc_-_d824s2VfopkHh7D0jW4aXCS1D_AlGA').\nExample: \"1qpyC0XzHc_-_d824s2VfopkHh7D0jW4aXCS1D_AlGA\""
},
"inherit_from_before": {
"type": "boolean",
"default": 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.\nExamples:\n true\n false"
}
}
}