New274+ blocks and 249+ tools are now fully documented
Triggers
Block

Table New Row Block

Trigger a workflow when a new row is added to a Zelaxy table

The Table New Row block is a trigger: it starts a workflow whenever a new row is added to a user-defined Zelaxy table. Use it to react to sign-ups, form captures, imported records, or anything else that lands in a table — without polling the table yourself.

There is no webhook URL to register. Zelaxy scans the watched table on a schedule (about once per minute) and runs this workflow once per new row.

Overview

PropertyValue
Typetable_trigger
Categorytriggers
Color#10B981

When to Use

  • Onboard a user when a row lands in a Signups table
  • Enrich each new record with a lookup
  • Route new rows to a ticket, channel, or downstream automation
  • Mirror new rows into an external system

Configuration

SettingTypeDescription
Table IDTextID of the table to watch. The table must live in the same workspace as this workflow

How It Works

  1. Add the block, enter the Table ID to watch, and activate the workflow.
  2. The first poll only seeds the cursor — existing rows are recorded and nothing is triggered, so history is never replayed.
  3. As new rows are added, each one runs this workflow once, oldest first.
  4. The watched table must belong to the same workspace as this workflow; rows in other workspaces are ignored.

Outputs

FieldTypeDescription
row_idstringID of the newly added row
table_idstringID of the table the row was added to
table_namestringName of that table
dataobjectThe row's column values as a JSON object
positionnumberOrdinal position of the row in the table
created_atstringWhen the row was created (ISO)

Reference a single column value with a nested reference, e.g. {{Table: New Row 1.data.email}}.

See the Table New Row Trigger page for the full field reference and examples.