Search K
Appearance
Appearance
Uploads a CSV file, parses it into a list of row dictionaries, and stores the result in the workflow data for downstream use.
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.
| Field | Type | Required | Description |
|---|---|---|---|
| Csv File | File Upload | Yes | Select the CSV file to upload. The first row must be a header row; subsequent rows become data records. |
| Name | Description |
|---|---|
| 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. |