EzFlowEzFlow Docs
Node referenceFiles & PDF

GET_STORAGE_FILE

GET_STORAGE_FILE node.

What it does

GET_STORAGE_FILE node.

Inputs & outputs

Input handle
None
Output handle
None

Configuration

No configuration.

Example

How it works

GET_STORAGE_FILE reads a previously stored file back out of object storage. Give it the object key (the same path you used when uploading, e.g. invoices/INV-1042.pdf) and the node returns the file contents on its base64 output. It is the "load" counterpart to STORAGE.

Example

Scenario: A Workflow re-sends a stored invoice as an email attachment.

  1. Add a GET_STORAGE_FILE node and set key to invoices/INV-1042.pdf (wire it dynamically if the key comes from an upstream record).
  2. The node emits the file on base64. Feed that into a BASE64_TO_ATTACHMENT node to turn it into an email attachment.
  3. Connect the resulting attachments to a SEND_MAIL node.
GET_STORAGE_FILE ──(base64)──► BASE64_TO_ATTACHMENT ──(attachments)──► SEND_MAIL

On this page