Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What status code should I set for UPDATE (PUT) and DELETE (e.g. product successfully updated)? Thx

share|improve this question

5 Answers

up vote 192 down vote accepted

For a PUT request: HTTP 200 or HTTP 204 should imply "resource updated successfully".

For a DELETE request: HTTP 200 or HTTP 204 should imply "resource deleted successfully". HTTP 202 can also be returned which would imply that the instruction was accepted by the server and the "resource was marked for deletion".

9.6 PUT

If an existing resource is modified, either the 200 (OK) or 204 (No Content) response codes > SHOULD be sent to indicate successful completion of the request.

9.7 DELETE

A successful response SHOULD be 200 (OK) if the response includes an entity describing the status, 202 (Accepted) if the action has not yet been enacted, or 204 (No Content) if the action has been enacted but the response does not include an entity.

Source: w3.org: HTTP/1.1 Method Definitions

HTTP 200 OK: Standard response for successful HTTP requests. The actual response will depend on the request method used.

HTTP 204 No Content: The server successfully processed the request, but is not returning any content

Source: List of HTTP status codes: 2xx Success

share|improve this answer
Very useful post! However I am wondering what should be the HTTP status code is the request sent by the client is valid (DELETE mySite/entity/123) and the entity to delete does not exist. – Martin Dec 30 '11 at 21:27
@Martin: In that case, the service should return an HTTP 404. Strictly speaking, a DELETE or a GET request for a resource that does not exist is not a "valid" request - ie. the client should not re-attempt that request because it will never succeed... The HTTP protocol defines 2 categories of problems - those with a 4xx status code, where the client must modify the request before retrying it, and those with a 5xx status code, which indicate that the service ran into trouble and the client should/could retry the same exact request without changing it. – Daniel Vassallo Dec 30 '11 at 21:44
1  
Why no talk about "205 Reset Content" for PUT (update)? – qeremy Aug 6 '12 at 7:32
1  
@Martin, Daniel I think you are looking at what a successful call for DELETE is. If you look at DELETE as "make sure the resource is deleted", then it is successful whether or not the resource existed before the call or not. – Jeff Martin Aug 13 '12 at 16:58
2  
@JeffMartin That may be so from the standpoint of the user, but as far as the server is concerned, if the resource does not exist, the server should return 404. – Randolpho Oct 11 '12 at 17:29

Short answer: for both PUT and DELETE, you should send either 200 (OK) or 204 (No Content).

Long answer: here's a complete decision diagram (click to magnify).

HTTP 1.1 decision diagram

share|improve this answer
20  
Up for the decision diagram, very nice representation – David Caunt Jul 14 '10 at 16:30
5  
Holy, you can use that diagram to reject 99,99% of job applications ;) – Tomasz Zielinski Nov 16 '11 at 10:52
13  
One error at the bottom: "Response includes an entity?" has "yes" and "no" conditions switched. – Igor Brejc May 8 '12 at 10:52
2  
The diagram is amazing. Is there a higher resolution version for printing out? – KiKi Jun 25 '12 at 10:07
1  
+1 for bringing sexy back to decision trees. Hawt. – Kit Jan 8 at 16:11
show 4 more comments

RFC 2616 describes which status codes to use.

And no, it's not always 200.

share|improve this answer

In addition to 200 and 204, 205 (Reset Content) could be a valid response.

The server has fulfilled the request and the user agent SHOULD reset the document view which caused the request to be sent ... [e.g.] clearing of the form in which the input is given.

share|improve this answer

200 for both. 200 = OK

Sorry read slightly wrong. What he said!

share|improve this answer

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.