Skip to content

Load CSV ​

Uploads a CSV file, parses it into a list of row dictionaries, and stores the result in the workflow data for downstream use.

Purpose ​

Use this task to bring tabular data from a CSV file into the workflow as a structured, iterable collection. The first row of the file is treated as the column header, and each subsequent row becomes a dictionary keyed by those headers. The resulting data is stored under the file's base name, making it immediately available to loop or processing nodes that follow.

Inputs ​

FieldTypeRequiredDescription
Csv FileFile UploadYesSelect the CSV file to upload. The first row must be a header row; subsequent rows become data records.

Outputs ​

NameDescription
A list of dictionaries representing the rows of the CSV, stored under the file's base name (without extension). For example, uploading employees.csv produces an output variable named employees.

Tentech