Batch Update Values
Perform Batch Update Values through Google Sheets.
google_sheets_batch_update_valueswrite
Inputs
- Spreadsheet Id
spreadsheet_idexpressionrequiredRequired literal value or workflow expression.
- Data
datajsonrequiredRequired JSON value.
- Value Input Option
value_input_optionselectOptional selected identifier or value.
Default:
"RAW"Options: Raw ("RAW"), User Entered ("USER_ENTERED")
- Expected Data
expected_datajsonOptional JSON value.
- Require Expected Match
require_expected_matchbooleanOptional true-or-false value.
Default:
false - Write Enabled
write_enabledbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccesssubmittedSubmittedwrite_skippedWrite Skippedskip_reasonSkip ReasonconflictConflictconflicting_rangesConflicting Rangesspreadsheet_idSpreadsheet Idupdated_range_countUpdated Range Countupdated_rowsUpdated Rowsupdated_columnsUpdated Columnsupdated_cellsUpdated CellserrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"spreadsheet_id",
"data"
],
"properties": {
"data": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"expected_data": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"write_enabled": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"spreadsheet_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"value_input_option": {
"enum": [
"RAW",
"USER_ENTERED"
],
"type": "string",
"default": "RAW",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"require_expected_match": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"conflict": {},
"submitted": {},
"skip_reason": {},
"updated_rows": {},
"error_message": {},
"updated_cells": {},
"write_skipped": {},
"spreadsheet_id": {},
"updated_columns": {},
"conflicting_ranges": {},
"updated_range_count": {}
},
"additionalProperties": true
}