Append Row
Perform Append Row through Google Sheets.
google_sheets_append_rowwritegoogle_sheets
Inputs
- Google Sheets Account Id
google_sheets_account_idselectdynamic optionsOptional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Spreadsheet Id
spreadsheet_idexpressionrequiredRequired literal value or workflow expression.
- Sheet Title
sheet_titleselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Header Row
header_rownumberOptional numeric value.
Default:
1 - Headers
headersexpressionOptional literal value or workflow expression.
- Values
valuesjsonrequiredRequired JSON value.
- Value Input Option
value_input_optionselectOptional selected identifier or value.
Default:
"RAW"Options: Raw ("RAW"), User Entered ("USER_ENTERED")
- Write Enabled
write_enabledbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccesssubmittedSubmittedwrite_skippedWrite Skippedskip_reasonSkip Reasonspreadsheet_idSpreadsheet Idupdated_rangeUpdated Rangeupdated_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",
"sheet_title",
"values"
],
"properties": {
"values": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"headers": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"header_row": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"sheet_title": {
"type": "string",
"description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
},
"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"
},
"google_sheets_account_id": {
"type": "string",
"description": "Optional selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"submitted": {},
"skip_reason": {},
"error_message": {},
"updated_cells": {},
"updated_range": {},
"write_skipped": {},
"spreadsheet_id": {}
},
"additionalProperties": true
}