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.
- A PDF_GENERATOR node renders the invoice and emits the document on its
base64output. - Add a STORAGE node. Wire
base64from the generator into STORAGE'sbase64input, and setfileNameto something likeinvoices/INV-1042.pdf. Pick the storage destination viastorageId. - 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