How to submit RESTful partial updates? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T02:37:49Z http://stackoverflow.com/feeds/question/232041 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/232041/how-to-submit-restful-partial-updates 2 How to submit RESTful partial updates? Gili 2008-10-24T00:02:01Z 2008-10-24T01:26:02Z <p>Sam Ruby, author of "RESTful Web Services" seems to come out against the use of HTTP PUT for partial updates: <a href="http://intertwingly.net/blog/2008/02/15/Embrace-Extend-then-Innovate" rel="nofollow">http://intertwingly.net/blog/2008/02/15/Embrace-Extend-then-Innovate</a></p> <p>What isn't clear is how partial updates <em>should</em> take place. As I commented near the bottom of his blog, it isn't clear how using HTTP PATCH is any better than using a "patch document" against HTTP PUT.</p> <p>It is worth noting that although Sam comes out against misusing HTTP PUT he doesn't seem to advocate the use of HTTP PATCH either.</p> <p>How should one submit RESTful partial updates?</p> http://stackoverflow.com/questions/232041/how-to-submit-restful-partial-updates/232194#232194 2 Answer by Darrel Miller for How to submit RESTful partial updates? Darrel Miller 2008-10-24T01:26:02Z 2008-10-24T01:26:02Z <p>As you can see from the comments in the blog post you referenced there is no agreed upon way to do partial updates. If heavyweights like Sam Ruby, Joe Gregario, Mark Nottingham, Mark Pilgrim, Bill de hÓra, etc cannot come to an agreement, what hope do we have.</p> <p>As far as I am concerned, I wouldn't worry too much. Create a partial update media type that works for you, use PATCH to indicate your intent and when agreement is finally reached on a general purpose media type, change your server to accept both formats.</p> <p>Be thankful that if the worst sin your REST api commits is abusing PUT/PATCH then you are doing pretty good.</p>