Multidomain MDM
- Multidomain MDM 10.3 HotFix 2
- 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: "P2" } ] }
{ keys: [ { rowid: "P2" } ] overrides: { Party: { rowidObject: "P1", firstName: "Serge", //override the value for the first name Telephone: { // override which Telephone child records to merge item:[ { rowidObject: "T1", MERGE: { item: [ // to remove the original merge candidates, specify null null, null ], $original: { item: [ {key:{rowid: "T2"}}, {key:{rowid: "T3"}} ] } } }, { rowidObject: "T4", MERGE: { item: [ // to add or change merge candidates, specify matched records {key:{rowid: "T2"}} ], $original: { item: [ null ] } } ] } } } }