Table of Contents

Search

  1. Preface
  2. Introduction to Business Entity Services
  3. Enterprise Java Bean Business Entity Service Calls
  4. Representational State Transfer Business Entity Service Calls
  5. Simple Object Access Protocol Business Entity Service Calls
  6. Services for Cross-reference Records and BVT Calculations
  7. Supporting Corporate Linkage Service
  8. External Calls to Cleanse, Analyze, and Transform Data
  9. Using REST APIs to Add Records
  10. Using REST APIs to Upload Files

Remove Mismatched Source Data Example

Remove Mismatched Source Data Example

REST API Example
The following code shows the URL and command to unmerge the cross-reference record at the child level from an Address record:
POST http://localhost:8080/cmx/cs/localhost-orcl-MDM_SAMPLE/Person/181921?action=unmerge&systemName=Admin { "name":"Person.Address", "key":{ "rowid":"41721 ", "rowidXref":41722 } }
Where:
  • the cross-reference record to unmerge has a row ID of 41722
  • the row ID of the master record to unmerge the cross-reference record from is 41721
  • the row ID of the root record is 181921
SOAP/EJB Example
The following code shows the URL and command to unmerge the cross-reference record at the child level from an Address record:
<ns9:UnMerge xmlns:ns2="urn:co-base.informatica.mdm" xmlns:ns7="urn:co-meta.informatica.mdm" xmlns:ns3="http://services.dnb.com/LinkageServiceV2.0" xmlns:ns8="urn:task-base.informatica.mdm" xmlns:ns6="urn:co-ors.informatica.mdm" xmlns:ns1="urn:cs-base.informatica.mdm" xmlns:ns9="urn:cs-ors.informatica.mdm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="ns9:UnMerge"> <ns9:parameters> <ns9:businessEntityKey name="Person"> <ns1:key> <ns1:rowid>181921</ns1:rowid> </ns1:key> </ns9:businessEntityKey> <ns9:unmergeKey name="Person.TelephoneNumbers"> <ns1:key> <ns1:rowid>41721 </ns1:rowid> <ns1:rowidXref>41722</ns1:rowidXref> </ns1:key> </ns9:unmergeKey> <ns9:treeUnmerge>true</ns9:treeUnmerge> </ns9:parameters> </ns9:UnMerge>
Where:
  • the cross-reference record to unmerge has a row ID of 41722
  • the row ID of the master record to unmerge the cross-reference record from is 41721
  • the row ID of the root record is 181921

0 COMMENTS

We’d like to hear from you!