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.
- An HTTP_TRIGGER receives the form submission (
name,email,company). - Add an ADD_DATABASE_RECORD node. Set
tabletoleadsand wire the form fields into thedataobject:
{ "name": "Ana Costa", "email": "ana@acme.com", "company": "Acme" }- 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