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. SOAP Business Entity Service Calls
  6. Cross-reference Records and BVT Calculations Services
  7. Supporting Corporate Linkage Service
  8. External Calls to Cleanse, Analyze, and Transform Data
  9. Appendix A: Using REST APIs to Add Records
  10. Appendix B: Using REST APIs to Upload Files
  11. Appendix C: Using REST APIs to Manage Reports

Sample SOAP Request and Response

Sample SOAP Request and Response

The following sample SOAP request retrieves a list of assignable users:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:cs-ors.informatica.mdm"> <soapenv:Header> <Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> <UsernameToken> <Username>admin</Username> <Password>admin</Password> </UsernameToken> </Security> </soapenv:Header> <soapenv:Body> <urn:listAssignableUsers> <!--Optional:--> <urn:parameters> <!--Optional:--> <urn:taskType>Update</urn:taskType> <!--Optional:--> <urn:businessEntity>Person</urn:businessEntity> </urn:parameters> </urn:listAssignableUsers> </soapenv:Body> </soapenv:Envelope>
The following sample SOAP response lists the assignable users:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <ns6:listAssignableUsersReturn xmlns:ns1="urn:cs-base.informatica.mdm" xmlns:ns2="urn:co-base.informatica.mdm" xmlns:ns3="urn:co-ors.informatica.mdm" xmlns:ns4="urn:co-meta.informatica.mdm" xmlns:ns5="urn:task-base.informatica.mdm" xmlns:ns6="urn:cs-ors.informatica.mdm"> <ns6:object> <ns1:users> <user> <userName>admin</userName> </user> </users> <ns1:roles/> </ns6:object> </ns6:listAssignableUsersReturn> </soapenv:Body> </soapenv:Envelope>

0 COMMENTS

We’d like to hear from you!