I\'m getting response this way:
Response response = expect().statusCode(200).given().body(requestBody).contentType(\"application/json\") .when().post(\"/admi
I found the answer :)
Use JsonPath or XmlPath (in case you have XML) to get data from the response body.
In my case:
JsonPath jsonPath = new JsonPath(responseBody); int user_id = jsonPath.getInt("user_id");