I am working on designing a resource for this service which has a set of mutable properties and a set of immutable ones (for example, status
which is generated by the service and not something the client may change).
I need to include this in responses to GET
requests for the resource but am not sure what to do if someone then sends the resource with a PUT
request.
Forcing the caller to know which properties are immutable feels wrong, but silently discarding updates also feels incorrect. Responding with the updated resource to the PUT
request might solve the issue, but it's imperfect since the caller shouldn't have to do a diff of its request and the service's response to find out if a property was accepted.
Any thoughts on the right way forward?
P.S. I looked at How should I update a REST resource? but it's different from this question and promotes an overly-chatty API design.