RunRowsBody — Floqer API Schema | Floqer Docs

Properties

row_ids array of

Row UUIDs to queue through the action chain. Get these from Add Rows (row_ids response field) or List Rows. Rows on the sheet not included here are not re-run. Mutually exclusive with first_10.

string

first_10 boolean

Shortcut for "run the first 10 rows on the sheet" (by created_at ascending). Useful for experimentation and sampling on existing sheets. Mutually exclusive with row_ids. Pass true to enable; omit or pass false to use row_ids instead.

Example

RunRowsBody exampleCOPY

{
  "row_ids": [\
    "a1b2c3d4-e5f6-7890-abcd-ef1234567001",\
    "a1b2c3d4-e5f6-7890-abcd-ef1234567002",\
    "a1b2c3d4-e5f6-7890-abcd-ef1234567003"\
  ],
  "first_10": false
}