What RESTful HTTP request for executing actions on the server?

15,076

Solution 1

This depends if you create a new backup object on database each time you call, or if you have many backup objects (that is, backups for different files, for example) that hold only the last value.

POST /backups is used to create a new object, and so the correct answer if you always create a new backup.

PUT /backups/id if you are updating your backup data in the same object.

restufull routes

Solution 2

I believe POST /backup (to backup all resources) and POST /backup <id> (to backup a single resource) are going to suit you best here.

CRUD MAPPING: Like Ray said, backup doesn't map to CRUD well; you want an action resource on the server to perform the function. Mark Massé wrote the O'Reilly book on REST API design and his recommendation is to use an action resource on the server in that case (see slide 20 on the Action archetype).

URI DESIGNATION: Action resources should be the last segment of the URI with no child resources. This will make sense when you see the reason below for which HTTP method is best suited here.

HTTP METHOD: Backup shouldn't be an idempotent action, so you want the HTTP method that's not idempotent. That's POST. Not only is PUT idempotent, the URI you specify is where you're putting the resource you're sending. You don't want to do that if you want to be restful. Part of the purpose of POST and its non-idempotence is specified as

providing a block of data, such as the result of submitting a form, to a data-handling process

which is what you want here.

REST: To be a layered system, the server (by way of its action resource (the backup method)) should specify where its output should go; the client shouldn't house that logic.


So, doing it this way, your backup action resource is free to determine where you want to put the backups (which may be a store resource (/backups); see slide 19) and whether you want to overwrite the previous backups or whether you want to implement some form of version control (something that REST design doesn't account for). So basically you were on the right track!

Solution 3

While RESTafarians (REST purists) will say that the only actions in a REST API should be the basic CRUD operations that map the HTTP verbs--GET, PUT, POST and DELETE--this sometimes isn't practical and makes your job more difficult than it needs to be. If you want to have other actions, such as Backup, then you might want to consider an RPC-style REST implementation that uses both the HTTP verb and an action name embedded in the request URL to determine the action being performed.

GET    /resource/select
GET    /resource/select?id={id}
PUT    /resource/update?id={id}
POST   /resource/insert
DELETE /resource/delete?id={id}
PUT*   /resource/backup?id={id}
GET    /resource/backup?id={id}

*If your app maintains multiple backups of resources and you want the Backup action to always create a new backup then it it customary to use POST as Backup is not idempotent. If you only maintain one backup and the Backup action simply upserts the backup of the resource then you should use PUT since Backup is idempotent in this case.

Share:
15,076

Related videos on Youtube

Niklas
Author by

Niklas

Updated on June 04, 2022

Comments

  • Niklas
    Niklas about 2 years

    I have a RESTFul server API which I've built. Some parts of it is not controlling resources and I'm having trouble mapping the relevant URL + HTTP-method to the actions that are executed on the server.

    e.g. I can backup every resource on the server with POST /backup, but I'm not sure if this the most appropriate mapping. What about a single resource? Should I specify it with: POST /backup/id or by declaring the id as a variable that I send: POST /backup <id>

    Please give me some tips on how to structure this most appropriately so that my API is easy to grasp.

  • Darrel Miller
    Darrel Miller about 11 years
    The actual REST purists are quite adamant that you should avoid trying to correlate the uniform interface of HTTP and CRUD.
  • Jacob Stevens
    Jacob Stevens about 11 years
    It seems like Niklas' /backup resource is an action resource ("I can back up every resource...with 'POST /backup'...."). If so, using 'POST /backups' (plural) makes the purpose a little ambiguous. Mark Masse recommends action resources be verbs (backup) and collection resources be plural (backups). These semantics aren't yet standardized, but useful to consider.
  • fotanus
    fotanus about 11 years
    @JacobStevens What you say is true and that is a very interesting discussion, yet I can't advise follow a not standardized semantic, because standards are somewhat chaotic, and many times when there is more than one appropriated, ended up by no one being universally adopted and we miss a point of a standard. For now, I believe it is better train yourself to use REST with nouns and watch carefully for changes.
  • Tyler Collier
    Tyler Collier about 10 years
    I liked your answer but the his recommendation link is out of date now; it's not working (404). Can you update your answer?