I have a variable called token
with a specific value myTokenValue
I try to make a call that includes that variable in a header, tokenHeader:{{token}}
I also have a pre-request-script that needs to change the request based on the value of the token header, but if I try to read the value pm.request.headers.get('tokenHeader')
I get the literal value {{token}}
instead of the interpolated myTokenValue
How do I get this value without having to look at the variable directly?