Keep in mind I have a rudimentary understanding of REST. Let's say I have this URL:
http://api.animals.com/v1/dogs/1/
And now, I want to make the server make the dog bark. Only the server knows how to do this. Let's say I want to have it run on a CRON job that makes the dog bark every 10 minutes for the rest of eternity. What does that call look like? I kind of want to do this:
URL request:
ACTION http://api.animals.com/v1/dogs/1/
In the request body:
{"action":"bark"}
Before you get mad at me for making up my own HTTP method, help me out and give me a better idea on how I should invoke a server-side method in a RESTful way. :)
EDIT FOR CLARIFICATION
Some more clarification around what the "bark" method does. Here are some options that may result in differently structured API calls:
The RESTful principles bring the features that make web sites easy (for a random human user to "surf" them) to the web services API design, so they are easy for a programmer to use. REST isn't good because it's REST, it's good because it's good. And it is good mostly because it is simple.
The simplicity of plain HTTP (without SOAP envelopes and single-URI overloaded POST
services), what some may call "lack of features", is actually its greatest strength. Right off the bat, HTTP asks you to have addressability and statelessness: the two basic design decisions that keep HTTP scalable up to today's mega-sites (and mega-services).
But REST is not the silver bulltet: Sometimes an RPC-style ("Remote Procedure Call" - such as SOAP) may be appropriate, and sometimes other needs take precedence over the virtues of the Web. This is fine. What we don't really like is needless complexity. Too often a programmer or a company brings in RPC-style Services for a job that plain old HTTP could handle just fine. The effect is that HTTP is reduced to a transport protocol for an enormous XML payload that explains what's "really" going on (not the URI or the HTTP method give a clue about it). The resulting service is far too complex, impossible to debug, and won't work unless your clients have the exact setup as the developer intended.
Same way a Java/C# code can be not object-oriented, just using HTTP does not make a design RESTful. One may be caught up in the rush of thinking about their services in terms of actions and remote methods that should be called. No wonder this will mostly end up in a RPC-Style service (or a REST-RPC-hybrid). The first step is to think differently. A RESTful design can be achieved in many ways, one way is to think of your application in terms of resources, not actions:
💡 Instead of thinking in terms of actions it can perform ("do a search for places on the map")...
...try to think in terms of the results of those actions ("the list of places on the map matching a search criteria").
I'll go for examples below. (Other key aspect of REST is the use of HATEOAS - I don't brush it here, but I talk about it quickly at another post.)
Let's take a look a the proposed design:
ACTION http://api.animals.com/v1/dogs/1/
First off, we should not consider creating a new HTTP verb (ACTION
). Generally speaking, this is undesirable for several reasons:
ACTION
verb exists?Now let's consider using POST
(I'll discuss why below, just take my word for it now):
POST /v1/dogs/1/ HTTP/1.1
Host: api.animals.com
{"action":"bark"}
This could be OK... but only if:
{"action":"bark"}
was a document; and/v1/dogs/1/
was a "document processor" (factory-like) URI. A "document processor" is a URI that you'd just "throw things at" and "forget" about them - the processor may redirect you to a newly created resource after the "throwing". E.g. the URI for posting messages at a message broker service, which, after the posting would redirect you to a URI that shows the status of the message's processing.I don't know much about your system, but I'd already bet both aren't true:
{"action":"bark"}
is not a document, it actually is the method you are trying to ninja-sneak into the service; and/v1/dogs/1/
URI represents a "dog" resource (probably the dog with id==1
) and not a document processor.So all we know now is that the design above is not so RESTful, but what is that exactly? What is so bad about it? Basically, it is bad because that is complex URI with complex meanings. You can't infer anything from it. How would a programmer know a dog have a bark
action that can be secretly infused with a POST
into it?
So let's cut to the chase and try to design those barks RESTfully by thinking in terms of resources. Allow me to quote the Restful Web Services book:
A
POST
request is an attempt to create a new resource from an existing one. The existing resource may be the parent of the new one in a data-structure sense, the way the root of a tree is the parent of all its leaf nodes. Or the existing resource may be a special "factory" resource whose only purpose is to generate other resources. The representation sent along with aPOST
request describes the initial state of the new resource. As with PUT, aPOST
request doesn’t need to include a representation at all.
Following the description above we can see that bark
can be modeled as a subresource of a dog
(since a bark
is contained within a dog, that is, a bark is "barked" by a dog).
From that reasoning we already got:
POST
/barks
, subresource of dog: /v1/dogs/1/barks
, representing a bark
"factory". That URI is unique for each dog (since it is under /v1/dogs/{id}
).Now each case of your list has a specific behavior.
dog.email
and records nothing.Firstly, is barking (sending an e-mail) a synchronous or an asynchronous task? Secondly does the bark
request require any document (the e-mail, maybe) or is it empty?
dog.email
and records nothing (as a synchronous task)This case is simple. A call to the barks
factory resource yields a bark (an e-mail sent) right away and the response (if OK or not) is given right away:
POST /v1/dogs/1/barks HTTP/1.1
Host: api.animals.com
Authorization: Basic mAUhhuE08u724bh249a2xaP=
(entity-body is empty - or, if you require a **document**, place it here)
200 OK
As it records (changes) nothing, 200 OK
is enough. It shows that everything went as expected.
dog.email
and records nothing (as an asynchronous task)In this case, the client must have a way to track the bark
task. The bark
task then should be a resource with it's own URI.:
POST /v1/dogs/1/barks HTTP/1.1
Host: api.animals.com
Authorization: Basic mAUhhuE08u724bh249a2xaP=
{document body, if needed;
NOTE: when possible, the response SHOULD contain a short hypertext note with a hyperlink
to the newly created resource (bark) URI, the same returned in the Location header
(also notice that, for the 202 status code, the Location header meaning is not
standardized, thus the importance of a hipertext/hyperlink response)}
202 Accepted
Location: http://api.animals.com/v1/dogs/1/barks/a65h44
This way, each bark
is traceable. The client can then issue a GET
to the bark
URI to know it's current state. Maybe even use a DELETE
to cancel it.
dog.email
and then increments dog.barkCount
by 1This one can be trickier, if you want to let the client know the dog
resource gets changed:
POST /v1/dogs/1/barks HTTP/1.1
Host: api.animals.com
Authorization: Basic mAUhhuE08u724bh249a2xaP=
{document body, if needed; when possible, containing a hipertext/hyperlink with the address
in the Location header -- says the standard}
303 See Other
Location: http://api.animals.com/v1/dogs/1
In this case, the location
header's intent is to let the client know he should take a look at dog
. From the HTTP RFC about 303
:
This method exists primarily to allow the output of a
POST
-activated script to redirect the user agent to a selected resource.
If the task is asynchronous, a bark
subresource is needed just like the 1.2
situation and the 303
should be returned at a GET .../barks/Y
when the task is complete.
bark
" record with bark.timestamp
recording when the bark occured. It also increments dog.barkCount
by 1.POST /v1/dogs/1/barks HTTP/1.1
Host: api.animals.com
Authorization: Basic mAUhhuE08u724bh249a2xaP=
(document body, if needed)
201 Created
Location: http://api.animals.com/v1/dogs/1/barks/a65h44
In here, the bark
is a created due to the request, so the status 201 Created
is applied.
If the creation is asynchronous, a 202 Accepted
is required (as the HTTP RFC says) instead.
The timestamp saved is a part of bark
resource and can be retrieved with a GET
to it. The updated dog can be "documented" in that GET dogs/X/barks/Y
as well.
dog.owner
telling them that the new dog code is in production.The wording of this one is complicated, but it pretty much is a simple asynchronous task:
POST /v1/dogs/1/barks HTTP/1.1
Host: api.animals.com
Authorization: Basic mAUhhuE08u724bh249a2xaP=
(document body, if needed)
202 Accepted
Location: http://api.animals.com/v1/dogs/1/barks/a65h44
The client then would issue GET
s to /v1/dogs/1/barks/a65h44
to know the current state (if the code was pulled, it the e-mail was sent to the owner and such). Whenever the dog changes, a 303
is appliable.
Quoting Roy Fielding:
The only thing REST requires of methods is that they be uniformly defined for all resources (i.e., so that intermediaries don’t have to know the resource type in order to understand the meaning of the request).
In the above examples, POST
is uniformly designed. It will make the dog "bark
". That is not safe (meaning bark has effects on the resources), nor idempotent (each request yields a new bark
), which fits the POST
verb well.
A programmer would know: a POST
to barks
yields a bark
. The response status codes (also with entity-body and headers when necessary) do the job of explaining what changed and how the client can and should proceed.
Note: The primary sources used were: "Restful Web Services" book, the HTTP RFC and Roy Fielding's blog.
Edit:
The question and thus the answer have changed quite a bit since they were first created. The original question asked about the design of a URI like:
ACTION http://api.animals.com/v1/dogs/1/?action=bark
Below is the explanation of why it is not a good choice:
How clients tell the server WHAT TO DO with the data is the method information.
WHICH PART of the data [the client wants the server] to operate on is the scoping information.
As an example, take Google's URI http://www.google.com/search?q=DOG
. There, the method information is GET
and the scoping information is /search?q=DOG
.
Long story short:
And the rule of thumb:
If the HTTP method doesn’t match the method information, the service isn’t RESTful. If the scoping information isn’t in the URI, the service isn’t resource-oriented.
You can put the "bark" "action" in the URL (or in the entity-body) and use POST
. No problem there, it works, and may be the simplest way to do it, but this isn't RESTful.
To keep your service really RESTful, you may have to take a step back and think about what you really want to do here (what effects will it have on the resources).
I can't talk about your specific business needs, but let me give you an example: Consider a RESTful ordering service where orders are at URIs like example.com/order/123
.
Now say we want to cancel an order, how are we gonna do it? One may be tempted to think that is a "cancellation" "action" and design it as POST example.com/order/123?do=cancel
.
That is not RESTful, as we talked above. Instead, we might PUT
a new representation of the order
with a canceled
element sent to true
:
PUT /order/123 HTTP/1.1
Content-Type: application/xml
<order id="123">
<customer id="89987">...</customer>
<canceled>true</canceled>
...
</order>
And that's it. If the order can't be canceled, a specific status code can be returned. (A subresource design, like POST /order/123/canceled
with the entity-body true
may, for simplicity, also be available.)
In your specific scenario, you may try something similar. That way, while a dog is barking, for example, a GET
at /v1/dogs/1/
could include that information (e.g. <barking>true</barking>
). Or... if that's too complicated, loosen up your RESTful requirement and stick with POST
.
I don't want to make the answer too big, but it takes a while to get the hang of exposing an algorithm (an action) as a set of resources. Instead of thinking in terms of actions ("do a search for places on the map"), one needs to think in terms of the results of that action ("the list of places on the map matching a search criteria").
You may find yourself coming back to this step if you find that your design doesn't fit HTTP's uniform interface.
Query variables are scoping information, but do not denote new resources (/post?lang=en
is clearly the same resource as /post?lang=jp
, just a different representation). Rather, they are used to convey client state (like ?page=10
, so that state is not kept in the server; ?lang=en
is also an example here) or input parameters to algorithmic resources (/search?q=dogs
, /dogs?code=1
). Again, not distinct resources.
Another clear point that shows ?action=something
in the URI is not RESTful, are the properties of HTTP verbs:
GET
and HEAD
are safe (and idempotent);PUT
and DELETE
are idempotent only;POST
is neither.Safety: A GET
or HEAD
request is a request to read some data, not a request to change any server state. The client can make a GET
or HEAD
request 10 times and it's the same as making it once, or never making it at all.
Idempotence: An idempotent operation in one that has the same effect whether you apply it once or more than once (in math, multiplying by zero is idempotent). If you DELETE
a resource once, deleting again will have the same effect (the resource is GONE
already).
POST
is neither safe nor idempotent. Making two identical POST
requests to a 'factory' resource will probably result in two subordinate resources containing the same
information. With overloaded (method in URI or entity-body) POST
, all bets are off.
Both these properties were important to the success of the HTTP protocol (over unreliable networks!): how many times have you updated (GET
) the page without waiting until it is fully loaded?
Creating an action and placing it in the URL clearly breaks the HTTP methods' contract. Once again, the technology allows you, you can do it, but that is not RESTful design.