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.
- Add a GET_STORAGE_FILE node and set
keytoinvoices/INV-1042.pdf(wire it dynamically if the key comes from an upstream record). - The node emits the file on
base64. Feed that into a BASE64_TO_ATTACHMENT node to turn it into an email attachment. - Connect the resulting
attachmentsto a SEND_MAIL node.
GET_STORAGE_FILE ──(base64)──► BASE64_TO_ATTACHMENT ──(attachments)──► SEND_MAIL