Partner exchange — FTP

The old-school partner feed: upload today's price list to their FTP, download it back to confirm. Pre-wired for the docker test server in this description.

What’s inside

4 nodes — every type links to its full reference page.

StepNodeType
Price list Inject input.inject
Upload to partner FTP storage.ftp
Confirm upload FTP storage.ftp
Exchange log Console utility.console

Import it

  1. Studio → Import — paste the JSON below (or the URL /docs/templates/partner-exchange-ftp.json).
  2. Or ask the AI Copilot with the JSON pasted after the phrase:
    import this workflow json into a new workflow named "Partner exchange — FTP"
  3. Any credentials the nodes need are ${credential.…} references — add them once in Admin → Credentials and the template picks them up. Nothing secret ships in a template.
The workflow document (flowdrome.workflow.v1, 3 node types)
{
  "schemaVersion": "flowdrome.workflow.v1",
  "id": "",
  "name": "Partner exchange — FTP",
  "version": "0",
  "status": "draft",
  "nodes": [
    {
      "id": "seed",
      "type": "input.inject",
      "label": "Price list",
      "category": "trigger",
      "config": {
        "contentType": "application/json",
        "payload": {
          "text": "sku,price\nWID-1,10.00\nWID-2,45.00"
        }
      },
      "position": {
        "x": 0,
        "y": 0
      }
    },
    {
      "id": "up",
      "type": "storage.ftp",
      "label": "Upload to partner",
      "category": "io",
      "config": {
        "credentialId": "",
        "host": "127.0.0.1",
        "port": 2121,
        "user": "flowdrome",
        "password": "flowdromedemo",
        "secure": false,
        "operation": "upload",
        "remotePath": "prices.csv",
        "contentMode": "text",
        "bodyField": "text",
        "timeoutMs": 15000
      },
      "position": {
        "x": 530,
        "y": 0
      }
    },
    {
      "id": "down",
      "type": "storage.ftp",
      "label": "Confirm upload",
      "category": "io",
      "config": {
        "credentialId": "",
        "host": "127.0.0.1",
        "port": 2121,
        "user": "flowdrome",
        "password": "flowdromedemo",
        "secure": false,
        "operation": "download",
        "remotePath": "prices.csv",
        "contentMode": "text",
        "timeoutMs": 15000
      },
      "position": {
        "x": 1060,
        "y": 0
      }
    },
    {
      "id": "out",
      "type": "utility.console",
      "label": "Exchange log",
      "category": "utility",
      "config": {
        "message": "partner received: {{ $json }}"
      },
      "position": {
        "x": 1590,
        "y": 0
      }
    }
  ],
  "edges": [
    {
      "id": "e0",
      "sourceNodeId": "seed",
      "sourcePort": "output",
      "targetNodeId": "up",
      "targetPort": "input"
    },
    {
      "id": "e1",
      "sourceNodeId": "up",
      "sourcePort": "output",
      "targetNodeId": "down",
      "targetPort": "input"
    },
    {
      "id": "e2",
      "sourceNodeId": "down",
      "sourcePort": "output",
      "targetNodeId": "out",
      "targetPort": "input"
    }
  ],
  "triggers": [
    {
      "id": "t0",
      "nodeId": "seed"
    }
  ],
  "meta": {
    "snippets": [],
    "source": "template-gallery",
    "description": "The old-school partner feed: upload today's price list to their FTP, download it back to confirm. Pre-wired for the docker test server in this description."
  }
}

Generated from the verified demo corpus — this exact document seeds and runs on a fresh Flowdrome. Raw JSON: partner-exchange-ftp.json.