EzFlowEzFlow Docs
Node referenceDatabase

ADD_DATABASE_RECORD

ADD_DATABASE_RECORD node.

What it does

ADD_DATABASE_RECORD node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

ADD_DATABASE_RECORD inserts a new row into one of your EzFlow database tables. Provide the table name and a data object holding the field values; the node creates the record with a generated ID and returns both the new id and the full record. Use it to persist data captured earlier in a Workflow.

Example

Scenario: Save a new lead captured from a web form.

  1. An HTTP_TRIGGER receives the form submission (name, email, company).
  2. Add an ADD_DATABASE_RECORD node. Set table to leads and wire the form fields into the data object:
{ "name": "Ana Costa", "email": "ana@acme.com", "company": "Acme" }
  1. The node returns the new id — pass it to a downstream node (e.g. to send a confirmation referencing the record).
HTTP_TRIGGER ──► ADD_DATABASE_RECORD ──(id)──► SEND_MAIL

On this page