StyloDocs
Workflow blocks

Append Row to Google Sheet

Add new rows to the end of a sheet

View as Markdown

google/sheets-append-row — Add new rows to the end of a sheet.

Where it appears

The Append Row to Google Sheet block lives in the Integrations group of the Workflow Builder. Connect the Google integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
spreadsheetIdtext (supports references)YesThe target Google Sheet, given as a spreadsheet ID or its full URL. Use literal text or <StepName.field>.
sheetNametext (supports references)YesName of the tab within the spreadsheet to append rows to (e.g. Sheet1). Use literal text or <StepName.field>.
rowDatacodeYesJSON array of rows with scalar placeholders in quoted cells, or a single upstream placeholder that resolves to rows.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Append Row To Google Sheet.field>.

NameTypeDescription
successbooleanWhether write succeeded
updatedRowsnumberNumber of rows appended
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "google/sheets-append-row",
  "config": {
    "spreadsheetId": "<PreviousStep.field>",
    "sheetName": "<PreviousStep.field>",
    "rowData": "..."
  }
}

Limits and failure modes

  • Requires a connected Google integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (spreadsheetId, sheetName, rowData) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page