Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering what peoples opinions are of a RESTful 'PUT' operation that returns nothing(null) in the response body?

share|improve this question

10 Answers

up vote 6 down vote accepted

I don't see a problem with that, as long as you return an appropriate HTTP response code. 201 Created is probably the most suitable in this case.

Edit: This is not a good answer. See comments.

share|improve this answer
8  
From the link cited: "The request has been fulfilled and resulted in a new resource being created." PUT tends to be an update method, whereas POST is the create method. There's no problem with not returning a representation in the response body for a PUT, but I'd return 200 OK instead. – Rich Apodaca Sep 15 '09 at 14:56
5  
Uh, no, if you return success and nothing in the response body, the status code should be HTTP 204 No Content. The previous comment correctly raises the point that PUT is typically update whereas POST is create. – Russ Bateman Aug 1 '12 at 17:33
@Russ: Yeah, I agree. I had forgotten all about this answer, but apparently I got it all wrong back then. – Emil H Aug 3 '12 at 12:53

The HTTP specification (RFC 2616) has a number of recommendations that are applicable. Here is my interpretation:

  • HTTP status code 200 OK for a successful PUT of an update to an existing resource. No response body needed. (Per Section 9.6, 204 No Content is even more appropriate.)
  • HTTP status code 201 Created for a successful PUT of a new resource, with URIs and metadata of the new resource echoed in the response body. (RFC 2616 Section 10.2.2)
  • HTTP status code 409 Conflict for a PUT that is unsuccessful due to a 3rd-party modification, with a list of differences between the attempted update and the current resource in the response body. (RFC 2616 Section 10.4.10)
  • HTTP status code 400 Bad Request for an unsuccessful PUT, with natural-language text (such as English) in the response body that explains why the PUT failed. (RFC 2616 Section 10.4)
share|improve this answer
Mozilla states that "The methods PUT, DELETE, and OPTIONS can never result in a 200 OK response. – stian Dec 19 '12 at 9:03
2  
@stian Interesting! That seems pretty presumptuous on the part of Mozilla, since I can find nothing in RFC 2616 (notably sections 10.2 Successful 2xx and 10.2.1 200 OK) that specifically rule out the use of 200 for PUT, DELETE, or any other method. Did I miss something? Such as Mozilla becoming the boss of W3 and the IETF? ;) Or maybe they've just never heard of Postel's Robustness Principle. – system PAUSE Jan 24 at 22:26
2  
@stian: That sentence was removed on Feb 3 2013. Probably because someone read about it here. ;) developer.mozilla.org/en-US/docs/HTTP/… – Chris Apr 10 at 21:15

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).

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).

share|improve this answer
1  
"the server can also apply some processing to this resource": I'm new this this. Is that really RESTful? – Raedwald Aug 28 '12 at 22:02
2  
@Raedwald sure it is. REST doesn't require that the entire resource be updated on a PUT, although it's generally recommended. Some fields might not make sense to update -- created date or last modified date, for example, should probably not be included in the PUT body, but would likely be changed as a result of the PUT. That having been said, I do not agree with LiorH that a PUT should result in a return of the resource; I would require a GET after the PUT to obtain the updated resource. – Randolpho Oct 8 '12 at 21:16

Interesting to note that backbone.js will update its model using the returned data from a PUT. Just been caught out by this; it is what led me here!

share|improve this answer
1  
good to know this, but might be better as a comment – nik.shornikov Feb 14 at 5:33

The HTTP/1.1 spec (section 9.6) discusses the appropriate response/error codes. However it doesn't address the response content.

What would you expect ? A simple HTTP response code (200 etc.) seems straightforward and unambiguous to me.

share|improve this answer

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?

share|improve this answer

Ideally it would return a success/fail response.

share|improve this answer
3  
Not in the response body, though. The HTTP status code is the place for that. Maybe if there's an error some extended error information could be returned in the response bidy – Paul Apr 28 '09 at 13:13

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.

share|improve this answer

seems ok... though I'd think a rudimentary indication of success/failure/time posted/# bytes received/etc. would be preferable.

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.

share|improve this answer
How about 200 OK in the status response header? Do think thats enought to say, "Worked fine thanks?" – AnthonyWJones Apr 28 '09 at 13:11
the response header would contain the status code, and yes we are talking about HTTP at this point :) – AwkwardCoder Apr 28 '09 at 13:12

Http response code of 201 for "Created" along with a "Location" header to point to where the client can find the newly created resource.

share|improve this answer
2  
The PUT request already specified the location. – Dan Ellis Nov 29 '12 at 6:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.