When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Info |
---|
NOTE: As of version 4 of the API an update request filter is no longer required |
Update Request
The update request filter is a comma separated array that lists the properties to update. (NOTE: As of version 4 of the API an update request filter will no loner be required). Here is an example:
Code Block |
---|
{ "filters": [ "currencyId", "name", "displayName" ] } |
...