I am not sure if this task could be accomplished by Postman looking for suggestions. I would like to dump some data into my database using postman. Currently I have something like this in Postman. It is a post request.That basically creates a single user
{
"user" : {
"first_name": "Alex",
"last_name": "bar",
"username": "alex",
"email": "alex@gmail.com",
"password":"..."
},
"employee_zip" : 12345
}
currently my db is empty.What I would like to do is basically create multiple users with different values using postman. Currently the only way I can think of doing this in postman is to create requests inside a collection and then run the collection. This method seems very tedious and wrong. I know I could simply use python to create a function that takes these values in as parameters and then does a post call.I wanted to know if there was an easier way to accomplish this task in Postman.