I have two postman requests x,y which hit endpoints in two different rest api X,Y. x will give me an authentication token which is necessary to make the y request. How do I make the request x inside request y ? That is, call x from inside y.
PS - I have already figured out how to use request x to setup environment variables (auth token) which will be picked up by y.