I'm designing a fairly simple collection, with two services in the collection:
- Request # 1 : get token service
- Request #2 : service to get detailed information (needs token from previous service)
I've managed to get the token from service #1 and set it into a variable, and use said token in Request #2. I then use a csv file in Runner to call service #2 using different arguments.
What I'm trying to achieve is to run service #1 only once, instead of running as many times as the number of lines on the CSV. Is it possible?