Google Sheets
GOOGLESHEETS_CREATE_SPREADSHEET_COLUMN
Creates a new column in a Google Spreadsheet, requiring a valid `spreadsheet_id` and an existing `sheet_id`; an out-of-bounds `insert_index` may append/prepend the column.
Remote googlesheets
Other tools also called GOOGLESHEETS_CREATE_SPREADSHEET_COLUMN?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"sheet_id": {
"type": "integer",
"description": "The numeric identifier of the specific sheet (tab) within the spreadsheet where the column will be added.\nExamples:\n \"0\"\n \"123456789\""
},
"insert_index": {
"type": "integer",
"default": 0,
"description": "The 0-based index at which the new column will be inserted. For example, an index of 0 inserts the column before the current first column (A), and an index of 1 inserts it between the current columns A and B.\nExamples:\n \"0\"\n \"1\"\n \"5\""
},
"spreadsheet_id": {
"type": "string",
"description": "The unique identifier of the Google Spreadsheet where the column will be created.\nExample: \"1qZysYd_N2cZ9gkZ8sR7M0rP8sX5vW2bA9gV3rF1cE0\""
},
"inherit_from_before": {
"type": "boolean",
"default": false,
"description": "If true, the new column inherits properties (e.g., formatting, width) from the column immediately to its left (the preceding column). If false (default), it inherits from the column immediately to its right (the succeeding column). This is ignored if there is no respective preceding or succeeding column.\nExamples:\n true\n false"
}
}
}