UpdateSheetBody

Body for Update Sheet. Send only the settings to change; at least one is required.

Properties

auto_runboolean

Run-on-receive toggle. `true` runs the action chain on every row that lands on the sheet (Add Data Rows, source syncs, `send_to_sheet`). `false` loads rows without running them; run them with Run Rows.

cache_enabledboolean

When `true`, a row with input column values identical to a previously-run row reuses the previous row's outputs instead of re-running the action chain. When `false`, every row triggers a fresh run.

cache_sincestring | null <date>

Earliest date (`YYYY-MM-DD`, UTC) from which cached runs are considered fresh. Runs before this date are ignored even when inputs match. `null` clears the cutoff — all cached runs are considered fresh regardless of age.

Example

UpdateSheetBody example
{
  "auto_run": false,
  "cache_enabled": false,
  "cache_since": "2026-03-17"
}