AddRowsBody
Body for Add Rows. Accepts up to 1,000 rows per call.
Properties
rowsarray ofrequiredRows to add. Each row is a JSON object whose keys are input field names (as defined by Add Inputs) and whose values match the field's declared type. Max 1,000 per call.
object
run_after_addstringWhat to run after rows are written. Scoped to the rows in this call only — pre-existing rows on the sheet are never touched. `none` (default) — add rows, don't run. `first_10` — queue up to 10 of the newly-added rows for execution; recommended build-loop default. Batches with fewer than 10 rows queue every row in the batch. `all` — queue every newly-added row (⚠ full credit cost = N rows × actions in chain; avoid until output is verified on `first_10`).
"none""first_10""all"Example
AddRowsBody example
{
"rows": [
{}
],
"run_after_add": "none"
}