Answers for "defining local variable in api"

1

local variable api

Local variables are temporary, and only accessible 
in your request scripts. Local variable values are 
scoped to a single request or collection run, and are 
no longer available when the run is complete.
Posted by: Guest on December-06-2020
1

defining local variable in api

Local variables are temporary values you set in your request 
scripts using syntax :

pm.variables.set("variable_key", "variable_value");
Posted by: Guest on December-07-2020

Browse Popular Code Answers by Language