Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing a RESTful service for a customer management system and I am trying to find the best practice for updating records partially. For example, I want the caller to be able to read the full record with a GET request. But for updating it only certain operations on the record are allowed, like change the status from ENABLED to DISABLED. (I have more complex scenarios than this)

I don't want the caller to submit the entire record with just the updated field for security reasons (it also feels like overkill).

Is there a recommended way of constructing the URIs? When reading the REST books RPC style calls seem to be frowned upon.

If the following call returns the full customer record for the customer with the id 123

GET /customer/123
<customer>
    {lots of attributes}
    <status>ENABLED</status>
    {even more attributes}
</customer>

how should I update the status?

POST /customer/123/status
<status>DISABLED</status>

POST /customer/123/changeStatus
DISABLED

...

Update: To augment the question. How does one incorporate 'business logic calls' into a REST api? Is there an agreed way of doing this? Not all of the methods are CRUD by nature. Some are more complex, like 'sendEmailToCustomer(123)', 'mergeCustomers(123, 456)', 'countCustomers()'

POST /customer/123?cmd=sendEmail

POST /cmd/sendEmail?customerId=123

GET /customer/count 

Thanks Frank

share|improve this question
To answer your question about "business logic calls" here is a post about POST from Roy Fielding himself: roy.gbiv.com/untangled/2009/it-is-okay-to-use-post where the basic idea is: if there isn't a method (such as GET or PUT) ideally suited to your operation use POST. – rojoca Mar 23 '10 at 11:27
This is pretty much what I've ended up doing. Make REST calls for retrieving and updating known resources using GET, PUT, DELETE. POST for adding new resources and POST with some descriptive URL for business logic calls. – magiconair Mar 8 '11 at 12:20

6 Answers

You basically have two options:

  1. Use PATCH (but note that you have to defined you own media type that specifies what will happen exactly)

  2. Use POST to a sub resource and return 303 See Other with the Location header pointing to the main resource. The intention of the 303 is to tell the client: "I have performed your POST and the effect was that some other resource was updated. See Location header for which resource that was." POST/303 is intended for iterative additions to a resources to build up the state of some main resource and it is a perfect fit for partial updates.

Jan

share|improve this answer
OK, the POST/303 makes sense to me. PATCH and MERGE I couldn't find in the list of valid HTTP verbs so that would require more testing. How would I construct an URI if I want the system to send an email to customer 123? Something like a pure RPC method call that doesn't change the state of the object at all. What is the RESTful way of doing this? – magiconair Mar 14 '10 at 20:08
I do not understand the email URI question. Do you want to implement a gateway that you can POST to to have it send an email or are you looking for mailto:customer.123@service.org? – Jan Algermissen Mar 14 '10 at 20:24
3  
Neither REST nor HTTP has anything to do with CRUD aside from some people equating the HTTP methods with CRUD. REST is about manipulating resource state by transferring representations. Whatever it is you want to achieve you do by transferring a representation to a resource with the appropriate semantics. Beware of the terms 'pure method calls' or 'business logic' as they too easily imply 'HTTP is for transport'. If you need to send an email, POST to a gateway resource, if you need to merge to accounts, create a new one and POST representations of the other two, etc. – Jan Algermissen Mar 14 '10 at 21:29
3  
See also how Google does it: googlecode.blogspot.com/2010/03/… – Marius Andreiana Nov 26 '10 at 13:08
show 5 more comments

You should use POST for partial updates.

To update fields for customer 123, make a POST to /customer/123.

If you want to update just the status, you could also PUT to /customer/123/status.

Generally, GET requests should not have any side effects, and PUT is for writing/replacing the entire resource.

This follows directly from HTTP, as seen here: http://en.wikipedia.org/wiki/HTTP_PUT#Request_methods

share|improve this answer
That much I've figured. What I am unsure about is how to structure the URI. If the following call returns the customer GET /customer/123 How do I update the customer status? POST /customer/123/status status=DISABLED POST /customer/changeStatus status=DISABLED – magiconair Mar 14 '10 at 19:06
You could POST to /customer/123, or do a PUT to /customer/123/status. – wsorenson Mar 14 '10 at 19:09
1  
@wsorenson: I'm just now reading "Effective REST Services with .NET", and I thought sure that POST always creates a new resource "under" the resource specified in the URL. Did I misread that? – John Saunders Mar 14 '10 at 19:13
1  
@John Saunders POST doesn't have to necessarily create a new resource that is accessible from a URI: tools.ietf.org/html/rfc2616#section-9.5 – wsorenson Mar 14 '10 at 19:16
1  
@wsorensen: I know it need not result in a new URL, but still thought a POST to /customer/123 should create the obvious thing that is logically under customer 123. Maybe an order? PUT to /customer/123/status seems to make better sense, assuming the POST to /customers implicitly created a status (and assuming that's legit REST). – John Saunders Mar 14 '10 at 19:20
show 1 more comment

I am running into a similar problem. PUT on a sub-resource seems to work when you want to update only a single field. However, sometimes you want to update a bunch of things: Think of a web form representing the resource with option to change some entries. The user's submission of form should not result in a multiple PUTs.

Here are two solution that I can think of:

  1. do a PUT with the entire resource. On the server-side, define the semantics that a PUT with the entire resource ignores all the values that haven't changed.

  2. do a PUT with a partial resource. On the server-side, define the semantics of this to be a merge.

2 is just a bandwidth-optimization of 1. Sometimes 1 is the only option if the resource defines some fields are required fields (think proto buffers).

The problem with both these approaches is how to clear a field. You will have to define a special null value (especially for proto buffers since null values are not defined for proto buffers) that will cause clearing of the field.

Comments?

share|improve this answer

Check out http://www.odata.org/

It defines the MERGE method, so in your case it would be something like this:

MERGE /customer/123

<customer>
   <status>DISABLED</status>
</customer>

Only the status property is updated and the other values are preserved.

share|improve this answer
Is MERGE a valid HTTP verb? – John Saunders Mar 14 '10 at 19:22
Look at PATCH - that is soon-to-be standard HTTP and does the same thing. – Jan Algermissen Mar 14 '10 at 19:47
@John Saunders Yes, it's an extension method. – Max Toro Mar 14 '10 at 20:36

Things to add to your augmented question. I think you can often perfectly design more complicated business actions. But you have to give away the method/procedure style of thinking and think more in resources and verbs.

mail sendings


POST /customers/123/mails

payload:
{from: x@x.com, subject: "foo", to: y@y.com}

The implementation of this resource + POST would then send out the mail. if necessary you could then offer something like /customer/123/outbox and then offer resource links to /customer/mails/{mailId}.

customer count

You could handle it like a search resource (including search metadata with paging and num-found info, which gives you the count of customers).


GET /customers

response payload:
{numFound: 1234, paging: {self:..., next:..., previous:...} customer: { ...} ....}

share|improve this answer

You should use PATCH for partial updates - either using json-patch documents (see http://tools.ietf.org/html/draft-ietf-appsawg-json-patch-08 or http://www.mnot.net/blog/2012/09/05/patch) or the XML patch framework (see http://tools.ietf.org/html/rfc5261). In my opinion though, json-patch is the best fit for your kind of business data.

PATCH with JSON/XML patch documents has very strait forward semantics for partial updates. If you start using POST, with modified copies of the original document, for partial updates you soon run into problems where you want missing values (or, rather, null values) to represent either "ignore this property" or "set this property to the empty value" - and that leads down a rabbit hole of hacked solutions that in the end will result in your own kind of patch format.

You can find a more in-depth answer here: http://soabits.blogspot.dk/2013/01/http-put-patch-or-post-partial-updates.html.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.