Add new rows of data to Google Sheets automatically
Parameter | Type | Required | Description |
---|---|---|---|
sheet_id | string | Yes | The Google Sheet ID (from the URL) |
values | array | Yes | Array of row data to append (each row is an array of values) |
sheet_name | string | No | Name of the specific sheet/tab (default: first sheet) |
range | string | No | Column range specification like ‘A:C’ (default: ‘A:A’) |
values
parameter expects an array of arrays:
[["value1", "value2", "value3"]]
[["row1col1", "row1col2"], ["row2col1", "row2col2"]]