Hi,
I have a scenario, where feeder reads the csv file.
after each record is pulled out of the feader , i will have to fire off a series of requests based on content of each row
csv looks like
criteria,type
a b c , typea
a b c d e , typeb
val feed2 = csv(inpyt.csv)
val se = feed(feed2).exec (http(“req)
.post (”/api")
.body(StringBody(${criteria}))
for each record in feed, i would have to split by " "[space] and fireoff a series of requests.
any help pointers would be appreciated.