Node referenceDatabase
UPDATE_DATABASE_RECORD
UPDATE_DATABASE_RECORD node.
What it does
UPDATE_DATABASE_RECORD node.
Inputs & outputs
| Input handle |
|---|
| None |
| Output handle |
|---|
| None |
Configuration
No configuration.
Example
How it works
UPDATE_DATABASE_RECORD patches an existing row in an EzFlow database table. Provide the target recordId and an updates object; the node merges those fields into the existing record (it patches, not replaces — fields you omit are left untouched) and returns the updated record. Typically you get the recordId from an upstream SEARCH_DATABASE_RECORD or ADD_DATABASE_RECORD node.
Example
Scenario: Mark a lead as contacted after an outreach email goes out.
- SEARCH_DATABASE_RECORD finds the lead and exposes its record
id. - Add an UPDATE_DATABASE_RECORD node. Wire
recordIdfrom the search result and setupdatesto the fields that changed:
{ "status": "contacted", "lastContactedAt": "2026-06-29" }- The node merges those fields; the lead's other data (name, email) stays intact.
SEARCH_DATABASE_RECORD ──(id)──► UPDATE_DATABASE_RECORD