REST-API: Was gibt PUT zurück?

Hallo zusammen, wie sieht eine Rückmeldung der REST-API für ein PUT-Kommando aus? Bei mir werden die Daten korrekt geschrieben, doch es kommt keine Rückmeldung. Ist das korrekt? Grüße sunflower

Vielleicht ein ähnliches Problem wie hier: programmierung-f56/rest-api-put-gibt-302-found-statt-json-zuruck-t10963.html Normal sollte es zum Beispiel so aussehen (JSON im Response Body): $ curl -i -u test:KT6WUqBcLBz7tQkog81blzO5EdHk3xN51WOmf4uT --DIGEST -X PUT -d "orderStatusId=0" "http://shopware.example.com/api/orders/45" HTTP/1.1 302 Moved Temporarily Server: nginx Content-Type: application/json Transfer-Encoding: chunked Connection: keep-alive location: http://shopware.example.com/api/orders/45 cache-control: no-cache date: Thu, 26 Jun 2014 13:52:26 GMT {"success":true,"data":{"id":45,"location":"http:\/\/shopware.example.com\/api\/orders\/45"}}