As per the docs: 'The environment name should match an existing environment in the collection of the request to be executed.'
Would it be possible to access inherited environments?
// Just like
env.set("token", jp("$.accessToken", res.body))
// Something like
env.parent.set("token", jp("$.accessToken", res.body))
// that can extend to
env.parent.parent.set("token", jp("$.accessToken", res.body))
As per the docs: 'The environment name should match an existing environment in the collection of the request to be executed.'
Would it be possible to access inherited environments?