Request being sent: '''@Test public void firstPost() { RestAssured.baseURI = "https://reqres.in/";
JSONObject reqBody = new JSONObject();
reqBody.put("name", "Ajay");
reqBody.put("job", "leader");
RequestSpecification reqSpec = RestAssured.given()
.body(reqBody);
Response res = reqSpec.post("/api/users");
System.out.println(res.asString());
}'''
Response being printed is: {"id":"403","createdAt":"2020-08-28T18:13:32.294Z"}
Expected response { "name": "Ajay", "job": "leader", "id": "403", "createdAt": "2020-08-28T18:13:32.294Z" }