Hi, I have a scenario with two requests written in Java, I will simplify it in this message.
request 1 - post with some data, that getting a response with a link like { https://qwerty/**id143214** }
request 2 - post, in which I need to reuse id143214 from previous response, and put it at the middle of request 2 line: https://checkingif/**id143214**/isExist
I have tried to use check(bodyString().saveAs("idfromlink)) and then create a string in which I can use the substring method to get the id143214, but the string isn’t reusable in the next exec/request
I believe there is another way to correctly do what I’m trying