Input Data

Data passed in the body of any PATCH request to the entity module requires the following structure and data conventions.

  • Fields –Field data with target value for update.

The “fields” section is used to pass in the fields to update and the desired value. Any omitted fields will be unchanged.

JSON example of updating the values of multiple “cust” fields:

{

“fields”: {

“cust_field_1”: “A”,

“cust_decimal_2: 1.234

}

}