Client Management Systems API

Request to retrieve reference data, which can be used as inputs on the other requests.


The following input parameters are available in the request.

Parameter

Mandatory

Description

SessionID

Y

SessionID returned by the Login Request

SOAP 1.2 Definition

Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.saxobank.com/service/cms/2013/08">
   <soapenv:Header>
     <ns:SessionId>string</ns:SessionId>
   </soapenv:Header>
   <soapenv:Body>
     <ns:GetAvailableDataItemTypesRequest/>
   </soapenv:Body>
 </soapenv:Envelope> 



Response

 <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header>
     <ActivityId CorrelationId="7bd1492f-4a23-45b5-9d87-238be604dfc1" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">d738fb11-251a-442d-99e7-6aef6806cacd</ActivityId>
   </s:Header>
   <s:Body>
     <GetAvailableDataItemTypesResponse xmlns="http://www.saxobank.com/service/cms/2013/08">
       <Types xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
         <a:string>string</a:string>
       </Types>
     </GetAvailableDataItemTypesResponse>
   </s:Body>
 </s:Envelope>

Code Examples

Code example 22: GetAvailableDataTiemTypes Request

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.saxobank.com/service/cms/2013/08">
   <soapenv:Header>
     <ns:SessionId>QAs01NW22a2jbaSJfztgm</ns:SessionId>
   </soapenv:Header>
   <soapenv:Body>
     <ns:GetAvailableDataItemTypesRequest/>
   </soapenv:Body>
 </soapenv:Envelope>


 Code example 23: GetAvailableDataItemTypes Response

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Header>
     <ActivityId CorrelationId="7bd1492f-4a23-45b5-9d87-238be604dfc1" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">d738fb11-251a-442d-99e7-6aef6806cacd</ActivityId>
   </s:Header>
   <s:Body>
     <GetAvailableDataItemTypesResponse xmlns="http://www.saxobank.com/service/cms/2013/08">
       <Types xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
         <a:string>ReliefAtSourceTypes</a:string>
         <a:string>ProductClassifications</a:string>
         <a:string>ProductAreas</a:string>
         <a:string>MarginProfiles</a:string>
         <a:string>MarginCallProfiles</a:string>
         <a:string>Languages</a:string>
         <a:string>InterestProfiles</a:string>
         <a:string>InstrumentTypes</a:string>
         <a:string>Currencies</a:string>
         <a:string>Countries</a:string>
         <a:string>CommissionGroups</a:string>
         <a:string>CounterpartTypes</a:string>
         <a:string>CfdInterestProfiles</a:string>
         <a:string>AppropriatenessTestPassed</a:string>
         <a:string>AccountRiskProfiles</a:string>
         <a:string>InstrumentAccountTypes</a:string>
         <a:string>AccessProfiles</a:string>
         <a:string>WealthManagerProfiles</a:string>
         <a:string>DividendTaxStatuses</a:string>
       </Types>
     </GetAvailableDataItemTypesResponse>
   </s:Body>
 </s:Envelope>