.log().ifError()
.when()
.post("/resource/platforms");
XmlPath xmlPath = response.xmlPath();
Node resource1 = xmlPath.get("resource");
Node platformIdNode = resource1.get("resourceId");
String platformId = platformIdNode.value();
try {
long now = System.currentTimeMillis()-100;
given().body("{\"since\":" + now + ",\"type\":\"DOWN\",\"resourceId\":" + platformId + "}")
.header("Content-Type","application/json")