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

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!