REST: PUT should be PATCH

Note in a REST API, traditionally PUT is used to completely replace an item, however in this API it will only replace the properties that are provided.

jfyi PATCH is what is actually happening there.

1 Like