How can we access dynamic variable {{$guid}} inside pre request in postman?

1.2k Views Asked by At

I can access guid in url or body like {{$guid}} but same doesn't work inside pre-request script.

1

There are 1 best solutions below

1
On

actually uuid.v4 represent guid in postman

let uuid = require('uuid');
let guid = uuid.v4(); //you can use this variable in wherever you need to use guid in 
                      //pre-request script 
console.log(guid);