EzFlowEzFlow Docs
Node referenceTriggers

FORM_TRIGGER

Trigger: fires when a form is submitted.

What it does

Trigger: fires when a form is submitted.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

The FORM_TRIGGER starts a Workflow when a linked EzFlow form is submitted. Set the node's formId field to the ID of the form you want to monitor. On submission, field values are mapped through the form's field-mapping configuration to workflow variable names and exposed as formData to downstream nodes.

Example

A lead-capture form collects firstName, email, and company. After configuring the FORM_TRIGGER with the form's ID and mapping those fields to workflow variables, a visitor submits the form and the Workflow fires immediately. A downstream SEND_MAIL node reads formData.email to send a personalised confirmation, and a CREATE_CONTACT node uses formData.firstName and formData.company to create a CRM record.

On this page