How to increase Variable value based on the iteration being run in Postman

If I understand your question correctly, you would like to assign different values to a variable in the request in different iterations which is achievable in 2 ways.

a) Using data files

https://learning.getpostman.com/docs/postman/collection_runs/working_with_data_files/

The data files could be in JSON or CSV format. Unfortunately, there is no way in Postman to tie the variable values to another variable unless you want to do it in a hacky way!

b) Pre-request & Tests scripts

1- Initialise the environment variable in the Pre-request Scripts like this:

var value = pm.environment.get("var");

if( !value) {
    pm.environment.set("var", 1);
}

2- Increment the variable value in Tests

var value = pm.environment.get("var");

pm.environment.set("var", value+1);

This creates an environment variable and increments it after each iteration. depending on how you structure your collection you might need to consider flushing/resetting the environment variable to be ready for the next run

It worth mentioning that Pre-request Scripts and Tests running before and after the requests respectively, so you can write any scripts that would like to run after the request in the Tests. It shouldn't be necessarily a test!


1. Using Global pm.* functions and Variables in Pre-Request Scripts/Tests

Pre-Request script - runs before executing the request

Tests - runs after executing the request

a.

pm.variables.set("id", pm.info.iteration);

Ex: example.com/{{id}}/update gives

example.com/0/update

example.com/1/update etc...

Number of iterations is set in Collection Runner. pm.info.iteration key has the current iteration number, starting at 0.

b.

var id = +pm.globals.get("id");
pm.globals.set("id", ++id);

The variables can be in any scope - globals/collection/environment/local/data.

In Collection Runner, check the Keep Variable Values checkbox, to persist the final value of the variable in the session (here id).

Note: If the variable is accessed via individual scopes (via pm.globals.* or pm.environment.* or pm.collectionVariables.*), then the mentioned checkbox should be toggled as required. Else if accessed via local scope (pm.variables.*), the value will not be persisted irrespective of the checkbox.

Ex: Same as above

More on variables and scoping


2. Using Dynamic variables

These variables can be used in case random values are needed or no specific order is necessary.

a. $randomInt - gives a random Integer within 1 - 1000.

Ex: example.com/{{$randomInt}}/update gives

example.com/789/update,

example.com/265/update etc...

b. $timestamp - gives current UNIX timestamp in seconds.

Ex: example.com/{{$timestamp}}/update gives

example.com/1587489427/update

example.com/1587489434/update etc...

More on Dynamic variables


Using Postman 7.22.1, while answering this. New methods may come in future.