Should I use PUT method for update, if I also update a timestamp attribute
Ignoring the comment about the REST style mapping CRUD to the HTTP methods, this is an excellent question. The answer to your question is, yes you are free to use PUT in this scenario even though there are some elements of the resource that are updated by the server in a non-idempotent manner. Unfortunately, the … Read more