up vote 8 down vote favorite
1
share [g+] share [fb]

Let's say I have a resource that can have two different behaviors when delete is called

  1. The resource is deleted.
  2. The resource is moved to the recycle bin.

How would model it in a REST compliant way?

I thought about the following solution:

DELETE /myresource

moves the resource to the recycle bin (default behavior)

DELETE /myresource?force-delete=true

forces delete on the resource.

Is that REST compliant? I have never seen query parameters in the URL when calling DELETE, is that OK?

link|improve this question

66% accept rate
feedback

4 Answers

up vote 4 down vote accepted

A pure REST strategy should prefer non changing resources. In my opinion, you are not changing the resource by appending a parameter, so it sounds like good strategy to me.

If you were to perform the same action like so:

DELETE /myresource.force

that would act like another resource, which wouldn't be optimal.

link|improve this answer
This breaks the 'rules' of REST in that you are addressing a different resource. At the same time, so does /myresource.json and /myresource.xml providing different formats of the same data (use your accept headers, people!) but that isn't going away any time soon. – Jeffrey Hulten Aug 17 '11 at 3:06
feedback

Your idea is fine, but I think a custom request header would be a little more appropriate. Query parameters are better suited to, well, parameters.

A custom request header would look something like this:

DELETE /myresource
X-Really-Delete: Yup
link|improve this answer
feedback

Why not? You are already passing a parameter to identify which resource, so send another one to establish a different course of action. IMO, it is perfectly RESTful.

link|improve this answer
feedback

You could also implement 2. as a POST request instead of DELETE.

POST /myresource

recycle-bin=true...

As in all you're doing is updating the resource to indicate that it is in the recycle-bin.

EDIT: changed method from PUT to POST given a PUT must enclose a complete replacement (or addition) of the resource, whereas clearly here we are only updating a part of the resource.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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