I'm trying to use Postman to verify an API. I can verify the single request without any issues, and get the desired output. However, I want to now do a load test, and run the same call 5 times.
I tried using a for and while loop, but Postman gives an error.
while i < 5
{
"FirstName": "TestFN",
"LastName": "TestLN",
"orderID": *I want to update this based on the value of i --> "Concat(100,i)"*
}