Node reference

Retrieve Media for Joomla

Gets images or videos so later steps in your flow can use them. You can fetch one file, several files, or every file in a folder — from your Joomla Media library, by typing a pa…

Overview

Gets images or videos so later steps in your flow can use them. You can fetch one file, several files, or every file in a folder — from your Joomla Media library, by typing a path, from a web address, or from information passed in by an earlier step.

When the flow reaches this step, JOrchestrator executes Retrieve Media against your linked site or an external integration, using the field values you set on General and Design. Downstream steps can read the output payload fields defined for this node.

Why use this node

Retrieve Media is a action step in the Media group. Action steps run in the middle or end of a flow. They perform work on your CMS, call external services, or transform data for the next step.

Typical reasons teams add Retrieve Media to a flow:

  • Retrieve Media on your linked Joomla site when the flow reaches this step
  • Retrieve media based on webhook, schedule, or CMS event data
  • Integrate Media operations with messaging, AI, or database steps in one canvas

Example workflows

Common patterns on the canvas:

  1. Trigger or Webhook → upstream steps → Retrieve MediaSend Email or CMS update
  2. Scheduled triggerRetrieve MediaDebug (while testing) → production action

How to set it up

On the Design tab, choose Single file, Multiple paths, or All media in folder. For a single file you can browse Media, paste a path or URL, or drag in a field from a previous step. For multiple files, pick from Media and/or list extra paths and URLs below.

Good to know

By default you receive links to the files. Turn on file body output only if a later step needs the actual file contents, not just the link.

Properties panel

The designer shows these tabs for this node:

TabPurpose
InfoPlain-language description and output payload fields for downstream steps
GeneralCanvas label and read-only node ID
AIOptional assistant to help draft settings from plain language
DesignNode-specific configuration fields

System (automatic — not edited by the user)

These fields are managed by the designer or runtime — you do not type into them directly:

Property keyLabelTypeRequiredVisible whenNotes
_nodeIdNode IDnode-idNo
_payloadFieldsAvailable Fieldspayload-panelNo

User-configured — General tab

Property keyLabelTypeRequiredVisible whenNotes
labelLabeltextNoNode label

User-configured — Design tab

Property keyLabelTypeRequiredVisible whenNotes
retrieveModeRetrieve modeselect (single | paths | folder; default: single)No
mediaPathMedia path, URL, or payload fieldpayload-textNoretrieveMode === 'single'blog/hero.jpg, https://..., or {{Node.field}} Relative path under /images, http(s) URL, data: URI, or a {{placeholder}} from upstream nodes.
mediaPathsTextAdditional paths, URLs, or payload fieldstextareaNoretrieveMode === 'paths'One per line, comma-separated, or JSON array — e.g. blog/a.jpg, https://..., {{Node.url}}
folderFolder under /imagespayload-textNoretrieveMode === 'folder'blog/2025 Leave blank to scan all allowed media under /images (respects max files).
recursiveInclude subfolderscheckboxNoretrieveMode === 'folder'
maxFilesMax filesselect (10 | 25 | 50 | 100 | 250; default: 50)NoretrieveMode === 'folder'
bodyEncodingBody encodingselect (auto | base64 | text | none; default: auto)NoHow file bytes are returned in items[].body. none = metadata/URLs only.

CMS-backed (options from the linked site)

Property keyLabelTypeRequiredVisible whenNotes
mediaPathsMedia filesmedia-select-multiNoretrieveMode === 'paths'Select one or more files from Joomla Media Browse Joomla /images, or add paths and URLs in the field below.

CMS site configuration (not on this node's properties panel)

Credentials, API keys, mailers, SMTP, and integration defaults are configured in the CMS plugin under Node Configuration, not per step on this node. Link the flow to a domain before testing CMS-backed fields.

Output payload fields

After this step runs, later nodes can reference these fields using placeholders such as {{retrieve_media.success}}.

Field keyTypeDescription
successbooleanWhether the operation completed successfully.
countnumberNumber of items in the result set.
itemsarrayArray of per-file result objects (path, url, body, etc.).
pathsarrayArray of file paths that were processed.
urlsarrayArray of public URLs for retrieved files.
pathstringPath under /images or original URL/data URI for remote sources.
urlstringPublic HTTP URL to a resource on the site.
imagestringPublic URL to an image asset (alias of url/media).
mediastringPublic URL to a media asset.
filenamestringFile name without directory path.
bodystringFile bytes as base64 or text, depending on Body encoding.
bodyEncodingstringHow body is encoded: auto, base64, text, or none.
contentTypestringMIME type of the body content.
byteLengthnumberSize of retrieved content in bytes.
messagestringHuman-readable status, error, or result summary.