In Postman is it possible to use the same integer value on the same request
and increase it between requests sent?
for example first request:
{
"country": "US",
"date": "",
"printerType": "Xerox_1",
"printerID": "TEST_1",
"printerLocation":"LOCATION_1",
"printerName":"PRINTER_NAME_1",
"printerStatus":"PRINTER_STATUS_1"
}
second request:
{
"country": "US",
"date": "",
"printerType": "Xerox_2",
"printerID": "TEST_2",
"printerLocation":"LOCATION_2",
"printerName":"PRINTER_NAME_2",
"printerStatus":"PRINTER_STATUS_2"
}
I found a way to use random integers but they change across the body, Im also not sure how to increase the value between submissions.
