EzFlowEzFlow Docs
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.

  1. SEARCH_DATABASE_RECORD looks up the contact in the unsubscribed table and returns its id.
  2. Add a REMOVE_DATABASE_RECORD node and wire the recordId from the search result.
  3. 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

On this page