shopRef.setId(shop.getId());
basket.setShop(shopRef);*/
HttpCallCommand command = commandFactory.createJaxbHttpCallCommand(basketsUrl, HttpMethod.POST, null);
command.setApiKeyProtected(true);
command.setInput(objectFactory.createBasket(basket));
command.execute();
log.info(command.getLocation());
log.info("" + command.getStatus());
log.info(command.getErrorMessage());
if (command.getStatus() != 201)
throw new IllegalArgumentException("Could not create Basket!");