What status code should I set for UPDATE (PUT) and DELETE (e.g. product successfully updated)? Thx
|
|
|
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".
Source: w3.org: HTTP/1.1 Method Definitions
|
|||||||||||||||||
|
|
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). |
|||||||||||||||||||||
|
|
RFC 2616 describes which status codes to use. And no, it's not always 200. |
|||
|
|
|
In addition to 200 and 204, 205 (Reset Content) could be a valid response.
|
||||
|
|
