EzFlowEzFlow Docs
Node referenceFiles & PDF

STORAGE

STORAGE node.

What it does

STORAGE node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

STORAGE uploads a base64-encoded file to the object storage you configured in EzFlow Settings. Wire a base64 string and a fileName into its inputs; the node writes the file to the bucket behind the selected storageId and produces no output. It is the "save" half of the file lifecycle — pair it with GET_STORAGE_FILE to read files back later.

Example

Scenario: A Workflow generates an invoice PDF and archives it in storage.

  1. A PDF_GENERATOR node renders the invoice and emits the document on its base64 output.
  2. Add a STORAGE node. Wire base64 from the generator into STORAGE's base64 input, and set fileName to something like invoices/INV-1042.pdf. Pick the storage destination via storageId.
  3. STORAGE uploads the file. Because it returns nothing, connect any follow-up work (e.g. a notification) on its completion edge.
PDF_GENERATOR ──(base64)──► STORAGE ──► NOTIFY

On this page