Is REST DELETE really idempotent?

HttpRestHttp Headers

Http Problem Overview


DELETE is supposed to be idempotent.

If I DELETE http://example.com/account/123 it's going to delete the account.

If I do it again would I expect a 404, since the account no longer exists? What if I attempt to DELETE an account that has never existed?

Http Solutions


Solution 1 - Http

Idempotence refers to the state of the system after the request has completed

In all cases (apart from the error issues - see below), the account no longer exists.

From here

> "Methods can also have the property of > "idempotence" in that (aside from > error or expiration issues) the > side-effects of N > 0 identical > requests is the same as for a single > request. The methods GET, HEAD, PUT > and DELETE share this property. Also, > the methods OPTIONS and TRACE SHOULD > NOT have side effects, and so are > inherently idempotent. "


The key bit there is the side-effects of N > 0 identical requests is the same as for a single request.

You would be correct to expect that the status code would be different but this does not affect the core concept of idempotency - you can send the request more than once without additional changes to the state of the server.

Solution 2 - Http

Idempotent is about the effect of the request, not about the response code that you get.

http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.1.2 says:

> Methods can also have the property of > "idempotence" in that (aside from > error or expiration issues) the > side-effects of N > 0 identical > requests is the same as for a single > request.

While you may get a different response code, the effect of sending N+1 DELETE requests to the same resource can be considered to be the same.

Solution 3 - Http

The important distinction is that idempotent refers to side-effects, not all-effects or responses. If you do a DELETE http://example.com/account/123 then the effect is that account 123 is now deleted from the server. That is the one and only effect, the one and only change to the state of the server. Now lets say you do the same DELETE http://example.com/account/123 request again, the server will respond differently, but its state is the same.

Its not like the DELETE request decided to change the server state in a different way because the account was missing, such as removing another account, or leaving an error log. Nay, you could call the same DELETE request a million times and you can be sure that the server is in the same state as it was the first time you called it.

Solution 4 - Http

Quoted from my another answer here:

Historically, RFC 2616, published at 1999, was the most-referenced HTTP 1.1 specs. Unfortunately its description on idempotency was vague, that leaves room for all these debates. But that specs has been superseded by RFC 7231. Quoted from RFC 7231, section 4.2.2 Idempotent Methods, emphasis mine:

> A request method is considered "idempotent" if the intended EFFECT ON THE SERVER of multiple identical requests with that method is the same as the effect for a single such request. Of the request methods defined by this specification, PUT, DELETE, and safe request methods are idempotent.

So, it is written in the specs, idempotency is all about the effect on the server. The first DELETE returning a 204 and then subsequent DELETE returning 404, such different status code does NOT make the DELETE non-idempotent. Using this argument to justify a subsequent 204 return, is simply irrelevant.


OK so it is not about idempotency. But then a follow-up question may be, what if we still choose to use 204 in subsequent DELETE? Is it OK?

Good question. The motivation is understandable: to allow the client to still reach its intended outcome, without worrying about error handling. I would say, returning 204 in subsequent DELETE, is a largely harmless server-side "white lie", which the client-side won't immediately tell a difference. That's why there are people doing that in the wild and it still works. Just keep in mind that, such lie can be considered semantically weird, because "GET /non-exist" returns 404 but "DELETE /non-exist" gives 204, at that point the client would figure out your service does not fully comply with section 6.5.4 404 Not Found.

But then, the intended way hinted by RFC 7231, i.e. returning 404 on subsequent DELETE, shouldn't be an issue in the first place. Many more developers chose to do that. That is presumably because, any client which implements HTTP DELETE (or any HTTP method, for that matter), would not blindly assume the result would always be successful 2xx. And then, once the developer starts to consider the error handling, 404 Not Found would be one of the first errors that comes into mind. At that point, he/she would hopefully draw a conclusion that, it is semantically safe for an HTTP DELETE operation to ignore a 404 error. Problem solved.

Solution 5 - Http

From the HTTP RFC:

> Methods can also have the property of "idempotence" in that (aside from error or expiration issues) the side-effects of N > 0 identical requests is the same as for a single request.

Note that's "side effects", not "response".

Solution 6 - Http

Yes. Regardless of the response code.

From latest RFC for HTTP 1.1 (emphasis mine):

> Idempotent methods are distinguished because the request can be > repeated automatically if a communication failure occurs before the > client is able to read the server's response. For example, if a > client sends a PUT request and the underlying connection is closed > before any response is received, then the client can establish a new > connection and retry the idempotent request. It knows that repeating > the request will have the same intended effect, even if the original > request succeeded, though the response might differ.

It explicitly says that the response might differ. More importantly, it points out the reason of the concept: if an action is idempotent, the client can repeat the action when it encounters any error, and knows that it won't crash anything by doing so; if not, the client will have to make an additional query (possibly GET) to see whether the previous one is effective, before it safely repeat the action. As long as the server can make such guarantee, the action is idempotent. Quote from another comment:

> Computing idempotence is about the robustness of a system. Since things can fail (e.g. network outage), when a failure is detected, how do you recover? The easiest recovery is to just do it again, but that only works if doing it again is idempotent. E.g. discard(x) is idempotent, but pop() is not. It's all about error recovery.

Solution 7 - Http

Suppose we have to manage football teams represented by id, name, city.

{
	id: "1",
	name: "manchester united",
	city : "manchester "
}

Saying that Delete is idempotent means that if you invoque DELETE /team/1 several time the state of the system stay unchanged (in fact the first call DELETE /team/1 delete the team. In other words, delete is idempotent because duplicated call let the state of system unchanged.

In the same way we can say PUT also is idempotent. imagine you do this PUT more than once :

PUT /team/1
{
    	id: "1",
    	name: "liverpool",
    	city : "liverpool"
}

Duplicated calls of such PUT request always have the same effect (the team 1 will be liverpool).

It is obvious that GET requests are idempotent also.

Solution 8 - Http

I think the same thing, 404 - Account doesn't exist.

You could argue 400 - Bad Request. But in the sense of REST the object you requested to perform an action on doesn't exist. That translates to 404.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBen NolandView Question on Stackoverflow
Solution 1 - HttpChris McCauleyView Answer on Stackoverflow
Solution 2 - HttpBrunoView Answer on Stackoverflow
Solution 3 - HttpJanac MeenaView Answer on Stackoverflow
Solution 4 - HttpRayLuoView Answer on Stackoverflow
Solution 5 - HttpfumanchuView Answer on Stackoverflow
Solution 6 - HttpFranklin YuView Answer on Stackoverflow
Solution 7 - HttpsoungView Answer on Stackoverflow
Solution 8 - HttpJason McCrearyView Answer on Stackoverflow