Should a RESTful 'PUT' operation return something.... - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T12:57:06Z http://stackoverflow.com/feeds/question/797834 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something 5 Should a RESTful 'PUT' operation return something.... AWC 2009-04-28T13:07:01Z 2009-05-05T21:44:54Z <p>I was wondering what peoples opinions are of a RESTful 'PUT' operation that returns nothing(null) in the response body?</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797852#797852 0 Answer by altCognito for Should a RESTful 'PUT' operation return something.... altCognito 2009-04-28T13:10:05Z 2009-04-28T13:10:05Z <p>Ideally it would return a success/fail response.</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797853#797853 8 Answer by Emil H for Should a RESTful 'PUT' operation return something.... Emil H 2009-04-28T13:10:12Z 2009-04-28T13:10:12Z <p>I don't see a problem with that, as long as you return an appropriate HTTP response code. <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.2" rel="nofollow">201 Created</a> is probably the most suitable in this case.</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797856#797856 0 Answer by Jason S for Should a RESTful 'PUT' operation return something.... Jason S 2009-04-28T13:10:17Z 2009-04-28T13:27:47Z <p>seems ok... though I'd think a rudimentary indication of success/failure/time posted/# bytes received/etc. would be preferable.</p> <p>edit: I was thinking along the lines of data integrity and/or record-keeping; metadata such as an MD5 hash or timestamp for time received may be helpful for large datafiles.</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797865#797865 1 Answer by Brian Agnew for Should a RESTful 'PUT' operation return something.... Brian Agnew 2009-04-28T13:13:01Z 2009-04-28T13:13:01Z <p>The <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html" rel="nofollow">HTTP/1.1 spec</a> (section 9.6) discusses the appropriate response/error codes. However it doesn't address the response content.</p> <p>What would you expect ? A simple HTTP response code (200 etc.) seems straightforward and unambiguous to me.</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797871#797871 0 Answer by AnthonyWJones for Should a RESTful 'PUT' operation return something.... AnthonyWJones 2009-04-28T13:13:33Z 2009-04-28T13:13:33Z <p>Just as an empty Request body is in keeping with the original purpose of a GET request and empty response body is in keeping with the original purpose of a PUT request. </p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/797878#797878 0 Answer by AlexanderJohannesen for Should a RESTful 'PUT' operation return something.... AlexanderJohannesen 2009-04-28T13:15:09Z 2009-04-28T13:15:09Z <p>There's a difference between the header and body of a HTTP response. PUT should never return a body, but must return a response code in the header. Just choose 200 if it was successful, and 4xx if not. There is no such thing as a null return code. Why do you want to do this?</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/798174#798174 0 Answer by LiorH for Should a RESTful 'PUT' operation return something.... LiorH 2009-04-28T14:13:25Z 2009-04-28T14:13:25Z <p>As opposed to most of the answers here, I actually think that PUT should return the updated resource (in addition to the HTTP code of course).</p> <p>The reason why you would want to return the resource as a response for PUT operation is because when you send a resource representation to the server, the server can also apply some processing to this resource, so the client would like to know how does this resource look like after the request completed successfully. (otherwise it will have to issue another GET request).</p> http://stackoverflow.com/questions/797834/should-a-restful-put-operation-return-something/827045#827045 0 Answer by system PAUSE for Should a RESTful 'PUT' operation return something.... system PAUSE 2009-05-05T21:44:54Z 2009-05-05T21:44:54Z <p>The HTTP specification (RFC 2616) has a number of recommendations that are applicable. Here is my interpretation:</p> <ul> <li>HTTP status code <code>200 OK</code> for a successful PUT of an update to an existing resource. No response body needed. (Per Section 9.6, <code>204 No Content</code> is even more appropriate.)</li> <li>HTTP status code <code>201 Created</code> for a successful PUT of a new resource, with URIs and metadata of the new resource echoed in the response body. (<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.2" rel="nofollow">RFC 2616 Section 10.2.2</a>)</li> <li>HTTP status code <code>409 Conflict</code> for a PUT that is unsuccessful due to a 3<sup>rd</sup>-party modification, with a list of differences between the attempted update and the current resource in the response body. (<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.10" rel="nofollow">RFC 2616 Section 10.4.10</a>)</li> <li>HTTP status code <code>400 Bad Request</code> for an unsuccessful PUT, with natural-language text (such as English) in the response body that explains why the PUT failed. (<a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4" rel="nofollow">RFC 2616 Section 10.4</a>)</li> </ul>