PUT
Replace an item using the PUT method
You can replace an existing item using the PUT method.
Use Content-Type application/json when submitting data using the PUT method. Property names are case-sensitive. Unknown property names are ignored. Missing properties are assigned a default value if declared in the model design and null otherwise.
Existing values will NOT be preserved when replacing an item using PUT. To perform a partial update of an item, use the PATCH method.
Replace an item using a PUT request with a URL including the item identifier:
https://<host-name>/<api-path>/<collection-name>/[item-identifier]
If the item is successfully replaced, a 200 ok response is returned.
If the item does not exist, a 404 not found response is returned.