Table of Contents

Search

  1. Preface
  2. Introduction to Business Entity Services
  3. EJB Business Entity Service Calls
  4. REST Business Entity Service Calls
  5. REST APIs for Data Director
  6. SOAP Business Entity Service Calls
  7. Cross-reference Records and BVT Calculations Services
  8. Supporting Corporate Linkage Service
  9. External Calls to Cleanse, Analyze, and Transform Data
  10. Appendix A: Using REST APIs to Add Records
  11. Appendix B: Using REST APIs to Upload Files
  12. Appendix C: Using REST APIs to Manage Reports

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!