I'm new to Postman and I am trying to automate usage of these two requests. The first one is a POST request which returns a JSON with a single key:value pair ("id") in it The second one is a POST request which just returns 200 OK
So far I've managed to save "id" from the 1st request's response to an environment variable.
However, I still need to do the following: After sending 1st request, wait about 30 seconds, put "id" from first request in the URL of 2nd request, then send 2nd request.