Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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 longer be required). Here is an example:

Code Block
{
    "filters": [
        "currencyId",
        "name",
        "displayName"
    ]
}

...