RESTful Multiple Updates (Example: Clear a Shopping Cart)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T06:10:49Zhttp://stackoverflow.com/feeds/question/444545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/444545/restful-multiple-updates-example-clear-a-shopping-cart2RESTful Multiple Updates (Example: Clear a Shopping Cart)?Rich Apodaca2009-01-14T20:32:29Z2009-02-17T11:15:31Z
<p>Let's say I have I have an online store with a "shopping cart" feature and I want to implement an "empty cart" link in a RESTful way.</p>
<p>For simplicity, let's say my resources are a Cart that contains CartItems, each of which has a Product. My URIs might be:</p>
<pre>
# add a product to the current user's Cart
POST /products/product_id/cart_items/
# remove a product from the current user's Cart
DELETE /cart_items/cart_item_id/
</pre>
<p>If so, what would the RESTful URI for the "empty cart" link look like?</p>
<p>Instead, I could think of the Cart as a general-purpose holder for Actions (<a href="http://stackoverflow.com/questions/411462/restful-way-to-create-multiple-items-in-one-request">as described here</a>):</p>
<pre>
# add a product
# form data contains e.g., product_id=123&action=add
POST /carts/cart_id/actions/
# remove a product
# action_id is the id of the action adding product 123
DELETE actions/action_id
# empty cart
# form data contains action=clear
POST /carts/cart_id/actions/
</pre>
<p>This approach seems more complicated than it needs to be. What would be a better way?</p>
http://stackoverflow.com/questions/444545/restful-multiple-updates-example-clear-a-shopping-cart/444578#4445783Answer by Crescent Fresh for RESTful Multiple Updates (Example: Clear a Shopping Cart)?Crescent Fresh2009-01-14T20:41:04Z2009-01-14T20:41:04Z<p>Don't do the second approach. Funneling different <code>actions</code> through one endpoint does not feel RESTful IMO.</p>
<p>You have <code>DELETE /cart_items/cart_item_id/</code> that removes <code>cart_item_id</code> from their cart. What about <code>DELETE /cart_items/</code> to clear the cart itself?</p>
http://stackoverflow.com/questions/444545/restful-multiple-updates-example-clear-a-shopping-cart/444643#4446431Answer by Rich Apodaca for RESTful Multiple Updates (Example: Clear a Shopping Cart)?Rich Apodaca2009-01-14T20:59:11Z2009-01-14T20:59:11Z<p><code>DELETE /cart_items/</code> is an interesting idea that has <a href="http://dev.rubyonrails.org/ticket/11022" rel="nofollow">also been discussed here</a>.</p>
http://stackoverflow.com/questions/444545/restful-multiple-updates-example-clear-a-shopping-cart/556348#5563480Answer by Prashanth for RESTful Multiple Updates (Example: Clear a Shopping Cart)?Prashanth2009-02-17T11:15:31Z2009-02-17T11:15:31Z<p>Adding an item to a cart:
<strong>POST carts/{cartid}/items</strong></p>
<p>Retrieving a specific item from the cart:
<strong>GET carts/{cartid}/items/{itemid}</strong></p>
<p>Deleting a specific item from the cart:
<strong>DELETE carts/{cartid}/items/{itemid}</strong></p>
<p>Getting the state of the cart
<strong>GET carts/{cartid}/state</strong><br />
(Could return a value like 0,1 that indicates the number of items in the cart)</p>
<p>Emptying the cart
<strong>PUT carts/{cartid}/state?state=0</strong></p>
<p>Does this look intuitive?</p>