Running GET requests in a browser

Hi

I have a POST request set up in postman to make request of an existing api but there is no GET request defined in the collection. How can I use the information from the POST request to write a GET request that I can send from a web browser?

@nathanesra So just to make sure we understand this correctly. You want to make a POST call to your existing API and based on data that is returned from that call?
Than make another request, this time a GET using some of that information from the response of the POST?

If thats the case, it should be quite easy. You would simply just need to leverage environment variables to save any data that you need from the POST response and then use those variables in creating the GET request.

Maybe you can provide us with a bit more detail and we can help with that.

1 Like