I have a post request that takes a variable in the url path and for every loop the variable must be unique.
As I wanted the post request for n no of times I have placed it in a loop controller, I can't use a csv file or any file upload externally to give different values
The sample post request goes somthing like
https://demo.apple.com/users/${deviceId}
And the body is
{
"type":"device",
"Name":"acb"
}
As it is a post request it has body also, I can't add deviceid under parameters.
So is there any way to create a variable to have unique value for every iteration and pass it to the url path, if yes please help me out.