Import or export CSV files
The CSV step handles importing data from CSV files and exporting workflow data back out as CSV files. Import reads a CSV file and produces a typed rows array, while Export takes a rows array and generates a downloadable CSV file.
In Import mode, the step finds a csv_file upload UUID from a predecessor step's record, parses the CSV content, and outputs a list array with each row typed according to your output field set, plus a list_count. Connect the output to a For Each step to process rows individually. In Export mode, the step reads a list array from its input (typically from a Collect step), generates a CSV file, and outputs a csv_url, file_name, file_size, row_count, success, and error.