I have to do a stress test on my application to create 1000 users. In order to create a user I do a POST request using a json:
{
 "code": "string",
 "domainName": "string",
 "enabled": true,
 "name": "string"
}
I can't figure out how I am going to create more than one user with jmeter. Is there a for loop? Also how do I get around the fact that code has to be unique so each user would need a unique code?
 
    
 
     
    