I create users for the DB. I need to send name and email. They should be unique, but not random. For example, the first user:
{
"Name": "Panda",
"Email": "pandaemail@test.com"
}
Then I need run collection with this request and automatically add 1 in the each following request for user creation.
User 2 should be:
{
"Name": "Panda1",
"Email": "panda1email@test.com"
}
User 3:
{
"Name": "Panda2",
"Email": "panda2email@test.com"
}
And so on. How can I do this in Postman?