Table of Contents

Search

  1. Preface
  2. Introduction to Services Integration Framework
  3. Setting Up the SIF SDK
  4. Request and Response Objects
  5. Transactions and Exception Handling
  6. ORS-Specific SIF API
  7. Asynchronous SIF Requests
  8. ORS-Specific JMS Event Messages
  9. Using Security Access Manager
  10. Using Dynamic Data Masking
  11. SIF API Reference
  12. Troubleshooting
  13. Appendix A: Identifiers
  14. Appendix B: Frequently Asked Questions

Services Integration Framework Guide

Services Integration Framework Guide

Get<Resource Name>

Get<Resource Name>

The
Get<Resource Name>
request retrieves a single row of data from the specified package. The row of data can include data from a base object and its associated cross-reference (XREF) records.

Usage Example

The following sample code uses the SOAP protocol to call the
Get<Resource Name>
request:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:mdmsample.siperian.api" xmlns:urn1="urn:siperian.api"> <soapenv:Header/> <soapenv:Body> <urn:getPkgPerson> <urn1:username>siftester</urn1:username> <urn1:password> <urn1:password>password</urn1:password> <urn1:encrypted>false</urn1:encrypted> </urn1:password> <urn1:orsId>orcl-MDM_SAMPLE</urn1:orsId> <urn:recordKey> <urn1:systemName>SFA</urn1:systemName> <urn1:sourceKey>300001035000</urn1:sourceKey> </urn:recordKey> </urn:getPkgPerson> </soapenv:Body> </soapenv:Envelope>
The following sample code displays the response to the
Get<Resource Name>
request:
<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> <getPkgPersonReturn xmlns="urn:mdmsample.siperian.api"> <ns1:message xmlns:ns1="urn:siperian.api">The GET was executed successfully - retrieved 1 records</ns1:message> <recordKey> <ns2:rowid xmlns:ns2="urn:siperian.api">301952</ns2:rowid> </recordKey> <pkgPerson> <rowidObject>301952</rowidObject> <lastUpdateDate>2014-02-14T17:08:31.491-08:00</lastUpdateDate> <firstName>John</firstName> <lastName>Doe</lastName> <partyType>Person</partyType> <hubStateInd>1</hubStateInd> </pkgPerson> </getPkgPersonReturn> </soapenv:Body> </soapenv:Envelope>

0 COMMENTS

We’d like to hear from you!