Google Sheets

GOOGLESHEETS_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 googlesheets

Other tools also called GOOGLESHEETS_APPEND_DIMENSION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "length": {
      "type": "integer",
      "description": "The number of rows or columns to append.\nExample: 10"
    },
    "sheet_id": {
      "type": "integer",
      "description": "The ID of the sheet to append rows or columns to.\nExample: 0"
    },
    "dimension": {
      "enum": [
        "ROWS",
        "COLUMNS"
      ],
      "type": "string",
      "description": "Specifies whether to append rows or columns.\nExample: \"ROWS\""
    },
    "spreadsheet_id": {
      "type": "string",
      "description": "The ID of the spreadsheet.\nExample: \"1q2w3e4r5t6y7u8i9o0p\""
    }
  }
}