Postman Tutorial Part 41 – Dynamic Variables in Postman

We have seen three types of variables in Postman :-

  1. Global Variable
  2. Environment Variable
  3. Collection Variable

In this post, we will see Dynamic Variables in Postman. As the name says, it generates random data for your API. It is more like Random library in programming language to generate random number , timestamp or alphanumeric or alphabets. It helps a lot to hit an API with different data randomly every time.

Suppose you need to pass an integer number ranging between 1 to 1000, to a field in JSON request. You just need to pass “{{$randomInt}}“. See example below:-

For every run, a new value will be generated and pass in response.

Note:- Dynamic variables can not be used in Pre-request and Tests scripts. A dynamic variable starts from ‘$’. You can only use them in the {{..}} format in the request URL , headers and body.

Like this Postman provides so many dynamic variables. I will list some important dynamic variables here:-

[table id=11 /]

All dynamic variables with examples can be found here.

#ThanksForReading

Have you tested your Selenium knowledge ? Try below Selenium Quiz:-

Learn Selenium with Quiz

Be master in Selenium-WebDriver

API Testing – Basics

API Testing – Postman

API Testing – Rest Assured

Learn Protractor Step by Step

Frequently Asked Java Programs in Interview

1 thought on “Postman Tutorial Part 41 – Dynamic Variables in Postman

Leave a Reply

Your email address will not be published. Required fields are marked *