Multidomain MDM
- Multidomain MDM 10.3 HotFix 1
- All Products
Properties / Elements
| Type
| Description
|
---|---|---|
keys
| array
| Required. An ordered list of the matched root records that you want to merge. You can identify the records either by row ID or by a combination of the source system and the source key.
|
overrides
| object
| Overrides the field values in a root record and the matches for child records.
|
MERGE
| object
| Overrides the field values in child records that you want to merge. Add the type of child record within the
overrides object and then add the
MERGE object.
|
{ keys: [ {rowid: "2478246"}, {rowid: "2478230"} ] }
{ keys: [ { rowid: "2478246" } ] overrides: { Party: { rowidObject: "2478230", firstName: "Charlie", //Override the value for the first name Telephone: { // Specifies the Telephone child records to merge item:[ { rowidObject: "2511", MERGE: { item: [ // To remove the original merge candidates, specify null null, null ], $original: { item: [ {key:{rowid: "2822"}}, {key:{rowid: "2733"}} ] } } }, { rowidObject: "2644", MERGE: { item: [ // To add or change merge candidates, specify matched records {key:{rowid: "2822"}} ], $original: { item: [ null ] } } ] } } } }