So i'm using postman, I have an URL that I can send POST request to, with a single json in the body where the key is "coupon" and the value is some number.
I want to run a test from postman that will place different numbers to the value of the coupon, and see all the responses that I will get.
I tried to read about the runner in postman, I figured that I can build a data file with all of the numbers for the coupon.
How can I replace the value in the post request with those numbers from the file data?
I'm trying to put a different number to this value, send it and get a response for each number.
Thank you!