Hello everyone,
I would appreciate any tips on how to successfully upload data using a CSV file. Instead of the typical method shown in this
where the request is iterated based on the amount of data,
I would like to upload all the data at once, resulting in an appearance like this.
sample csv data:
Thank you in advance for your help! I look forward to your suggestions and insights.
Ree
The Collection Runner will execute your collection once for each line in your CSV.
Therefore you can’t do what you want natively.
A couple of potential work arounds.
- Instead of using CSV files, use JSON as your data file.
- Have one header called “object” or “array” in your CSV and then take your required JSON and run it through a a JSON Minifier to compress the string and then use this string as the data. (Might not scale if you have hundreds of entries).
1 Like
thank you for this! will try this.