Node referenceDatabase
REMOVE_DATABASE_RECORD
REMOVE_DATABASE_RECORD node.
What it does
REMOVE_DATABASE_RECORD node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
REMOVE_DATABASE_RECORD deletes a row from an EzFlow database table. Provide the recordId to delete; the node removes the record and returns { deleted: true, recordId } so downstream nodes can confirm the removal. As with updates, you usually obtain the recordId from a prior SEARCH_DATABASE_RECORD node.
Example
Scenario: Remove a contact from a suppression table when they re-subscribe.
- SEARCH_DATABASE_RECORD looks up the contact in the
unsubscribedtable and returns itsid. - Add a REMOVE_DATABASE_RECORD node and wire the
recordIdfrom the search result. - The node deletes the row and returns
deleted: true; continue the Workflow (e.g. add them back to the active list).
SEARCH_DATABASE_RECORD ──(id)──► REMOVE_DATABASE_RECORD