PATCH
Modify an item using the PATCH method
You can modify an existing item using the PATCH method.
Use Content-Type application/json when submitting data using the PATCH method. Property names are case-sensitive. Unknown property names are ignored. Missing properties will keep their existing values.
Modify an item using a PATCH request with a URL including the item identifier:
https://<host-name>/<api-path>/<collection-name>/[item-identifier]
If the item is successfully modified, a 200 ok response is returned.
If the item does not exist, a 404 not found response is returned.