I have a collection per service and environments for Dev and Prod
At the environment level I would like to set variable like this:
apiBaseUrl = https://api-dev.example.com
and then in the collection service1
I would like variable like so:
baseUrl = {{apiBaseUrl}}/service1
Unortunately when I reference {{baseUrl}}
in a query inside service1
itβs value is expanded to {{apiBaseUrl}}/service1
.
Is Postman incapable of recursive variable expansion?