Postman. How to use json responce from the oiriginal POST request in another POST request?
So I got json response like this one below, when trigger original initial POST request:
{
"data": {
"JobReplicationGuid": "1796c142-c388-49cb-9fe4-45ba9768f35e",
"JobRequestId": 1702469,
"TaskId": 5321
}
}
Then I got another POST request, that utilizes that job replication guid. Currently I just copy/paste that id manually, and then trigger that POST request.
Question is how can I do that automatically? Can Postman utilize variables across all the POST request in collections, like I would do in sde thru import/export?