Answers for "postman local variables"

PHP
0

Postman Global variable

var data = JSON.parse(responseBody); postman.clearGlobalVariable("jwt_token"); postman.setGlobalVariable("jwt_token", data.jwt_token);
Posted by: Guest on May-07-2021
0

Postman Variables

just like variables in Java. 
we can create variables in postman to reuse the value 
1.Global variables: accessible everywhere in same workspace 
2.Environment variables: accessible in selected environment 
3.Collection Variables: belong to the collection itself and 
only accessible within the collection
Posted by: Guest on May-28-2021

Browse Popular Code Answers by Language