![]() |
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. Introduction to Variables in PostmanSuppose 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. Let us consider the following base URL -> https://horje.com. Now if we define this base URL in a variable main_url then we can make several different requests using the same variable.
So, from the above example, it is clear how a variable can reduce the overhead of the tester of writing the same code when the request is being made via the same URL with a different endpoint. 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. To define variables in Postman follow the below steps. Step 1: Type or paste your API in the request tab. Step 2: Select the type of your request. Step 3: Select the data you want to store in the variable and click on set as a variable. Step 4: Click on set as a new variable. Step 5: Enter your variable’s name and select the variable’s scope. Here we will select global. Step 6: Then click on the set variable. Step 7: Now you will see your data is replaced with your variable inside {}. Now click on send to test your API and fetch the data. Scope of Variables in PostmanScope 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. ![]() Scope of variables in Postman
Type of VariablesThere are generally two types of variables supported in Postman default and secret. 1. Default VariablesThis 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 VariablesThis 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. ConclusionIn 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’s1. Can we change the value of a global variable during the runtime?Yes, you can update the value of the global variables in environment manager during the runtime.
2. Is it possible to export and import environments with variables?Yes, Postman allows users to export and import environments along with the variables. This ensures that the data can be shared between different teams.
3. What will happen if a variable with the same name exists in the local and global scope?The local scope variable will take precedence over the global scope variable and the value of the global scope variable will be used.
4. Are variables limited to storing simple values like string only?No, variables can also be used to store values like arrays, integers and objects as well.
|
Reffered: https://www.geeksforgeeks.org
Geeks Premier League |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 15 |