I’m stuck on one point. I think I found the answer but I don’t know enough to fully understand it yet.
To get data from Qualtrics requires three requests (I put only two below for brevity). The URL for the second request includes a value from the previous request. I’ve put them in a Collection.
How do I pull a piece of data from a request to be part of the next URL?
Alright! @danny-dainton thanks so much! That did it. I looked up a bit more about parsing and pm.response (I actually ended up at another post where you helped another noobie). Putting it all together, it is working and I am geeking out.
I am putting the final code below in case it helps others. If you have any input on how to clean it up, great. Otherwise, thank you. You’ve helped me take my first step into a much larger world.
var jsonData = pm.response.json()
pm.response.json().result.progressId
var progressId = jsonData.result.progressId
pm.environment.set(“progress_key”, progressId);