resteasy отправка json
Есть сервис который должен принять json {"count": "5021"} , отправляю resteasy клиентом
Entity<String> entity = Entity.json(jsonString);
Response response = target.request().cookie("AuthSession", kuki).post(entity);
получаю ошибку 400 видимо потому что на сервер приходит как то не правильно Entity{entity={"count":"5021"}, variant=Variant[mediaType=application/json, language=null, encoding=null], annotations=[]}
message": "The request is invalid.", "innererror": { "message": "parameters : An error has occurred.\r\n",
по спеке запрос д.б. такой POST /api/counterparties/ HTTP/1.1 Host: localhost Content-Type: application/json
{"count": }
Помогите решить проблему плиз.