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 m
REST is a resource oriented standard, it is not action driven as a RPC would be.
If you want your server to bark, you should look into different ideas like JSON-RPC, or into websockets communication.
Every try to keep it RESTful will fail in my opinion: you can issue a POST
with the action
parameter, you are not creating any new resources but as you may have side effects, you are safer.