Search K
Appearance
Appearance
The Load CSV node downloads a CSV file from a provided path, converts it to JSON, and stores the parsed object in the workflow data for further processing.
Use this node to:
✅ Download CSV files and convert them to JSON for data-driven workflows.
✅ Load tabular data as structured dictionaries for looping, processing, or external system integrations.
✅ Integrate external data sources provided in CSV format into automation tasks.
Field Label | Input Type | Description |
---|---|---|
Csv File | Text | The path or URL to the CSV file to load and convert to JSON. |
Output Variable | Description |
---|---|
[BaseName] | Stores the parsed CSV data as a list of dictionaries, keyed by the file’s base name (filename without extension). |
This node:
Csv File
).✅ Load a list of users from a CSV file for creation in an external system.
✅ Process a product catalogue or pricing table for ERP integration.
✅ Dynamically create tasks or records in a loop from CSV-sourced data.
employees.csv
produces output key employees
).null
in the resulting dictionaries.