Type of Variables

There are generally two types of variables supported in Postman default and secret.

1. Default Variables

This is the default type of all the variables in Postman, it is automatically assigned when a variable is declared. In this type, the variables are presented in the plain text form normally and don’t have extra properties. You can create default variables in the Postman app by going to the “Variables” tab in the sidebar and adding the desired variables.

2. Secret Variables

This type of variable was introduced in Postman to protect the disclosure of sensitive data in some scenarios. Secret variables hide the initial and current values of the variables for all the workspace members. If the user doesn’t want to disclose some parts of the data during testing then he/she can declare the variable as secret.

Follow the below steps to create a secret variable in Postman:

Step 1: Click on the Environments tab.

Step 2: Click on Globals.

Step 3: Under globals, all variables will be visible. Click on the type of variable you want to make a secret and select the secret option from the dropdown.

Step 4: Now you will see your data will be hidden and your crucial information will not be disclosed if the variable is declared as a secret variable.

Note: It’s important to note that while regular variables are visible in the Postman UI, secrets are kept confidential and are not displayed in the Postman app.

How to Create Variables in Postman with Different Scopes

If you use Postman for testing your APIs and want to learn how to declare variables in it then this article is going to be helpful for you. In this article, you will learn how you can declare variables in Postman step by step. You will also learn about the various scopes of variables, their types, and their use cases in different scenarios. So deep dive into this article and master the variables in Postman.

Similar Reads

Introduction to Variables in Postman

Suppose you are using the same base_url for testing various end points of your API. Then you can define that base URL in a variable and then make requests by just changing the end points of your API. Follow the example below for a better understanding....

Why Should We Use Variables?

We must use variables in Postman for the following reasons:...

How to Define a Variable in Postman?

For better understanding we are going to use this demo API https://reqres.in/api you can replace this with your API to perform testing with variables....

Scope of Variables in Postman

Scope defines the context in which a variable is defined and determines where the variable can be accessed. In Postman variable scopes play a crucial role in managing and controlling the visibility and accessibility of the variables throughout the workspace. There are several types of scopes in Postman that provide accessibility according to your needs....

Type of Variables

There are generally two types of variables supported in Postman default and secret....

Conclusion

In this article, we have learned the importance of variables in postman. We learnt how we can declare variables of different types. We understood the concepts of scopes of variables and learned when to use variables with a suitable scope. We also learned how to create secret variables to protect our sensitive data. We hope that this article has helped you to understand the variables in Postman....

FAQ’s

1. Can we change the value of a global variable during the runtime?...