I have a 3rd party program generating data remotely i want to append the data generated there to my bench, the data is in csv format, I wanted to know how shall i do the process, I dont want to iterate over every row and call post method every time
I want to know how to import in Bulk from csv files
@Sneha_Manjunath I did this by just creating a bulk api method for creation. and using this new method you can bulk create the entire csv file with one single api . you still have to iterate your file and arrange the data in one single array .
I did something like this to begin with but here for every row I’m calling post method which is not feasible in a long run, so wanted to know how to bulk push the data in one single post call and also how my data structure must be while pushing the data