.statusCode(HttpStatus.SC_CREATED)
.log().ifError()
.when()
.post("/group");
String location = created.header("Location");
int groupId = Integer.parseInt(location.substring(location.lastIndexOf("/")+1));
try {
given()
.header("Accept", "application/json")