Hi @varikuti ! Welcome to the Postman community. We’re glad you’re here.
In order to best help you, could you add some details to your post? Here are the posting guidelines. For even more specific help, sharing it in a public workspace could also be helpful.
Hi @praveendvd@hannah.neil I have a request body look like:-
“ABC”: [
“a;a;local;wifi” , “a;a;local;wifi”, “a;a;local;wifi”
],
So i want to automate this by importing csv for the string values in this array ABC.
Please help me how to import multiple bulk data via CSV… Let me know the Postman changes and CSV file how to create. I’m using Excel and saving that as .csv
I’ve tried below solutions but it is only importing single value
I’ve made json file as:-
“ABC”: [
{{ABC}}
],
And I’ve passed in excel sheet saved as .csv where i passed column name “ABC” with multiple values in that column as :
ABC
“a;a;local;wifi”
“a;a;local;wifi”
“a;a;local;wifi”
“a;a;local;wifi”
Hence, I need a solution where each row value get imported in the same iteration in the same Array separated by comma like I’ve mentioned on the top.