What are the best/common RESTful url verbs and actions?

Use URLs to specify your objects, not your actions:

Note what you first mentioned is not RESTful:

/questions/show/<whatever>

Instead, you should use your URLs to specify your objects:

/questions/<question>

Then you perform one of the below operations on that resource.


GET:

Used to obtain a resource, query a list of resources, and also to query read-only information on a resource.

To obtain a question resource:

GET /questions/<question> HTTP/1.1
Host: whateverblahblah.com

To list all question resources:

GET /questions HTTP/1.1
Host: whateverblahblah.com

POST:

Used to create a resource.

Note that the following is an error:

POST /questions/<new_question> HTTP/1.1
Host: whateverblahblah.com

If the URL is not yet created, you should not be using POST to create it while specifying 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. You could argue that by creating a new question, you are also updating the /questions resource as it would now return one more question in its list of questions.

You should do something like this to create a resource using POST:

POST /questions HTTP/1.1
Host: whateverblahblah.com

Note that in this case the resource name is not specified, the new objects URL path would be returned to you.

DELETE:

Used to delete the resource.

DELETE /questions/<question> HTTP/1.1
Host: whateverblahblah.com

PUT:

Used to create a resource, or overwrite it, while you specify the resources URL.

For a new resource:

PUT /questions/<new_question> HTTP/1.1
Host: whateverblahblah.com

To overwrite an existing resource:

PUT /questions/<existing_question> HTTP/1.1
Host: whateverblahblah.com

…Yes, they are the same. PUT is often described as the ‘edit’ method, as by replacing the entire resource with a slightly altered version, you have edited what clients will GET when they next do.


Using REST in HTML forms:

The HTML5 spec defines GET and POST for the form element.

The method content attribute is an enumerated attribute with the following keywords and states:

  • The keyword GET, mapping to the state GET, indicating the HTTP GET method.
  • The keyword POST, mapping to the state POST, indicating the HTTP POST method.

Technically, the HTTP specification does not limit you to only those methods. You are technically free to add any methods you want, in practice though, this is not a good idea. The idea is that everyone knows that you use GET to read the data, so it will confuse matters if you decide to instead use READ. That said…

PATCH:

This is a method that was defined in a formal RFC. It is designed to used for when you wish to send just a partial modification to a resource, it would be used much like PUT:

PATCH /questions/<new_question> HTTP/1.1
Host: whateverblahblah.com

The difference is PUT has to send the entire resource, no matter how big it is compared to what’s actually changed, whilst PATCH you can send just the changes.

Leave a Comment