What are the best/common RESTful url verbs and actions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T10:09:52Zhttp://stackoverflow.com/feeds/question/256349http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions12What are the best/common RESTful url verbs and actions?Pure.Krome2008-11-02T01:08:18Z2009-07-04T07:32:46Z
<p>hi folks,
I'm trying to find some info on the best and most common RESTful url actions.</p>
<p>for example, what url do you use for displaying the details of an item, for editing the item, updating, etc.</p>
<pre><code>/question/show/<whatever>
/question/edit/<whatever>
/question/update/<whatever> (this is the post back url)
/question/list (lists the questions)
</code></pre>
<p>hmm. thanks to anyone helping out :)</p>
<p>edit: fixed typos
edit2: title updated - added the word <em>verbs</em>.</p>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/256355#2563555Answer by Allain Lalonde for What are the best/common RESTful url verbs and actions?Allain Lalonde2008-11-02T01:14:14Z2008-11-02T01:19:52Z<p>Assuming <code>/question/10</code> is a valid question then the method is used to interact with it.</p>
<p>POST to add to it</p>
<p>PUT to create or replace it</p>
<p>GET to view/query it</p>
<p>and DELETE to well.. delete it.</p>
<p>The url doesn't change.</p>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/256359#25635926Answer by Brian R. Bondy for What are the best/common RESTful url verbs and actions?Brian R. Bondy2008-11-02T01:20:10Z2008-11-15T14:33:59Z<p><strong>Use URLs to specify your objects, not your actions:</strong></p>
<p>Note what you first mentioned is not RESTful:</p>
<pre><code>/questions/show/<whatever>
</code></pre>
<p>Instead you should use your URLs to specify your objects:</p>
<pre><code>/questions/<question>
</code></pre>
<p>Then you perform one of the below operations on that resource. </p>
<p><hr /></p>
<p><strong>GET:</strong></p>
<p>Used to obtain a resource, query a list of resources, and also to query read only information on a resource.</p>
<p>To obtain a question resource:</p>
<pre><code>GET /questions/<question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>To list all question resources:</p>
<pre><code>GET /questions HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p><strong>POST:</strong></p>
<p>Used to modify and update a resource</p>
<pre><code>POST /questions/<existing_question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>Note that the following is an error:</p>
<pre><code>POST /questions/<new_question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>If the URL is not yet created, you should not be using POST to create it while specyfing the name. This should result in a resource not found error because does not exist yet. You should PUT the resource on the server first. </p>
<p>You could though do something like this to create a resources using POST:</p>
<pre><code>POST /questions HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>Note that in this case the resource name is not specified, the new objects URL path would be returned to you.</p>
<p><strong>DELETE:</strong></p>
<p>Used to delete the resource.</p>
<pre><code>DELETE /questions/<question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p><strong>PUT:</strong> </p>
<p>Used to create a resource, or overwrite it. While you specify the resources new URL.</p>
<p>For a new resource:</p>
<pre><code>PUT /questions/<new_question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>To overwrite an existing resource:</p>
<pre><code>PUT /questions/<existing_question> HTTP/1.1
Host: wahteverblahblah.com
</code></pre>
<p>...Yes they are the same. </p>
<p><hr /></p>
<p><strong>Using REST in HTML forms:</strong></p>
<p>The <a href="http://www.w3.org/html/wg/html5/#form-submission" rel="nofollow">HTML5 spec defines all of GET, POST, PUT and DELETE for the form element</a>. </p>
<blockquote>
<p>The method content attribute is an enumerated attribute with the following keywords and states:</p>
<ul>
<li>The keyword GET, mapping to the state GET, indicating the HTTP GET
method.</li>
<li>The keyword POST, mapping to the state POST, indicating the HTTP POST
method.</li>
<li>The keyword PUT, mapping to the state PUT, indicating the HTTP PUT
method.</li>
<li>The keyword DELETE, mapping to the state DELETE, indicating the HTTP
DELETE method.</li>
</ul>
</blockquote>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/256374#2563741Answer by tvanfosson for What are the best/common RESTful url verbs and actions?tvanfosson2008-11-02T01:33:08Z2008-11-03T18:31:53Z<p>I'm going to go out on a limb and guess that you what you mean is what are standard controllers for MVC when you say "RESTful" urls, since your examples could be considered non-"RESTful" (see <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=153170" rel="nofollow">this</a> article).</p>
<p>Since Rails really popularized the URL style you seem to be interested in, I offer below the default controller actions produced by the <a href="http://wiki.rubyonrails.org/rails/pages/ScaffoldGenerator" rel="nofollow">ScaffoldingGenerator</a> in Ruby on Rails. These should be familiar to anyone using a Rails application.</p>
<blockquote>
<p>The scaffolded actions and views are:
index, list, show, new, create, edit,
update, destroy</p>
</blockquote>
<p>Typically you would construct this as:</p>
<pre><code>http://application.com/controller/<action>/<id>
</code></pre>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/263885#263885-1Answer by Vincent Robert for What are the best/common RESTful url verbs and actions?Vincent Robert2008-11-04T23:31:02Z2008-11-04T23:31:02Z<p>Here is a mapping of your current URLs using the REST principle:</p>
<pre><code>/question/show/<whatever>
</code></pre>
<p>If you identify the question as a resource, then it should have a unique URL. Using GET to display it (retrieve it) is the common practice. It becomes:</p>
<pre><code>GET /question/<whatever>
</code></pre>
<p><hr /></p>
<pre><code>/question/edit/<whatever>
</code></pre>
<p>Now you want your user to have another view of the same resource that allows him to edit the resource (maybe with form controls). </p>
<p>Two options here, your application is an application (not a website), then you may be better using JavaScript to transform the resource into an editable resource ono the client side. </p>
<p>If this is a website, then you can use the same URL with additional information to specify another view, the common practice seems to be:</p>
<pre><code>GET /question/<whatever>;edit
</code></pre>
<p><hr /></p>
<pre><code>/question/update/<whatever> (this is the post back url)
</code></pre>
<p>This is to change the question, so PUT is the correct method to use:</p>
<pre><code>PUT /question/<whatever>
</code></pre>
<p><hr /></p>
<pre><code>/question/list (lists the questions)
</code></pre>
<p>The list of question is actually the parent resource of a question, so it naturally is:</p>
<pre><code>GET /question
</code></pre>
<p><hr /></p>
<p>Now you may need some more:</p>
<pre><code>POST /question (create a new question and returns its URL)
DELETE /question/<whatever> (deletes a question if this is relevant)
</code></pre>
<p>Tada :)</p>
http://stackoverflow.com/questions/256349/what-are-the-best-common-restful-url-verbs-and-actions/1081730#10817300Answer by pbreitenbach for What are the best/common RESTful url verbs and actions?pbreitenbach2009-07-04T07:32:46Z2009-07-04T07:32:46Z<p>Your four examples could be:</p>
<pre><code>GET /questions/123
POST (or PUT) /questions/123 q=What+is+the+meaning+of+life
POST (or PUT) /questions/123 q=What+is+the+meaning+of+life
GET /questions
</code></pre>
<p>To add a question:</p>
<pre><code>POST /questions q=What+is+the+meaning+of+life
</code></pre>
<p>The server would respond:</p>
<pre><code>200 OK (or 201 Created)
Location: /questions/456
</code></pre>