According to the spec:

The PUT method requests that the enclosed entity be stored under the supplied Request-URI. If the Request-URI refers to an already existing resource, the enclosed entity SHOULD be considered as a modified version of the one residing on the origin server.

So if I have to implement a RESTFul service to change the age of a Person:

id: 100, name: John Doe, description: Tall, age: 40

to age 60, should my PUT request contain

id: 100, name: John Doe, description: Tall, age: 60

or just

age: 60

Should the server be expected to merge and update just what changed or completely delete and re-add the resource?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

PUT replaces. If you want to just modify part of the resource, use PATCH (or assign separate URIs to the individual aspects of the resource)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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