Custom Objects Change Types

Change types that represent data modifications made to the Custom Objects entity.

Change types

Add Property

Change triggered by the Update CustomObject request when a new property is added.
type
String
"AddPropertyChange"
change
String
"addProperty"
nextValue
Any

Value after the change.

path
String

Path to the new property that was added.

Remove Property

Change triggered by the Update CustomObject request when an existing property is removed.
type
String
"RemovePropertyChange"
change
String
"removeProperty"
previousValue
Any

Value before the change.

path
String

Path to the property that was removed.

Set Property

Change triggered by the Update CustomObject request when an existing property is updated.
type
String
"SetPropertyChange"
change
String
"setProperty"
previousValue
Any

Value before the change.

nextValue
Any

Value after the change.

path
String

Path to the property that was updated.

Set Value

Change triggered by the Update CustomObject request when a value of a property is updated.
type
String
"SetValueChange"
change
String
"setValue"
previousValue
Any

Value before the change.

nextValue
Any

Value after the change.