AutomationFlowsGeneral › Transform XML to JSON and Upload to Dropbox

Transform XML to JSON and Upload to Dropbox

Original n8n title: Transform XML Data and Upload to Dropbox

Transform Xml Data And Upload To Dropbox. Uses xml, httpRequest, dropbox. Manual trigger; 5 nodes.

Manual trigger★★☆☆☆ complexity5 nodesXMLHTTP RequestDropbox
General Trigger: Manual Nodes: 5 Complexity: ★★☆☆☆ Added:

This workflow follows the Dropbox → HTTP Request recipe pattern — see all workflows that pair these two integrations.

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "name": "To JSON",
      "type": "n8n-nodes-base.xml",
      "position": [
        700,
        300
      ],
      "parameters": {
        "options": {}
      },
      "typeVersion": 1
    },
    {
      "name": "Change title",
      "type": "n8n-nodes-base.set",
      "position": [
        900,
        300
      ],
      "parameters": {
        "values": {
          "string": [
            {
              "name": "slideshow.title",
              "value": "New Title Name"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "name": "Get XML Data",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        500,
        300
      ],
      "parameters": {
        "url": "https://httpbin.org/xml",
        "responseFormat": "string"
      },
      "typeVersion": 1
    },
    {
      "name": "Dropbox",
      "type": "n8n-nodes-base.dropbox",
      "position": [
        1300,
        300
      ],
      "parameters": {
        "path": "/my-xml-file.xml",
        "fileContent": "={{$node[\"To XML\"].data[\"data\"]}}"
      },
      "credentials": {
        "dropboxApi": "<your credential>"
      },
      "typeVersion": 1
    },
    {
      "name": "To XML",
      "type": "n8n-nodes-base.xml",
      "position": [
        1100,
        300
      ],
      "parameters": {
        "mode": "jsonToxml",
        "options": {}
      },
      "typeVersion": 1
    }
  ],
  "connections": {
    "To XML": {
      "main": [
        [
          {
            "node": "Dropbox",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "To JSON": {
      "main": [
        [
          {
            "node": "Change title",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Change title": {
      "main": [
        [
          {
            "node": "To XML",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Get XML Data": {
      "main": [
        [
          {
            "node": "To JSON",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Transform Xml Data And Upload To Dropbox. Uses xml, httpRequest, dropbox. Manual trigger; 5 nodes.

Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →

More General workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

General

Collect And Label Images And Send To Google Sheets. Uses httpRequest, awsRekognition, googleSheets. Manual trigger; 4 nodes.

HTTP Request, AWS Rekognition, Google Sheets
General

Perform Speech To Text On Recorded Audio Clips Using Wit Ai. Uses readBinaryFile, httpRequest. Manual trigger; 2 nodes.

Read Binary File, HTTP Request
General

Create Screenshots With Uproc Save To Dropbox And Send By Email. Uses manualTrigger, functionItem, awsSes, uproc. Event-driven trigger; 10 nodes.

Function Item, AWS SES, Uproc +2
General

Collects Images From Web Search Results And Send To Google Sheets. Uses awsRekognition, httpRequest, googleSheets. Manual trigger; 6 nodes.

AWS Rekognition, HTTP Request, Google Sheets
General

Compress Binary Files To Zip Format. Uses dropbox, compression, httpRequest, manualTrigger. Event-driven trigger; 5 nodes.

Dropbox, Compression, HTTP Request