Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Filter inputs

Name
Type
Description
MandatoryAvailable from version
BrickIdGuid

The BrickId of the allocation profile

  
OwnerGuidThe owner associated with the allocation profile  
KeyStringThe key of the allocation profile  
AccountNoStringThe AccountNo associated with the allocation profile  
CreatedDateFromDateTime?When used, both from date and to date should be provided in the request  2.02.20160506
CreatedDateToDateTime? 2.02.20160506
     

Response rows (Array) inherits from EntityBase

Name
Type
Description
Available from version
NameString

The name of the allocation profile

 
CreatedDateDateTimeThe date when the allocation profile was created2.02.20160506
KeyStringThe key of the allocation profile 
OwnerGuidThe owner associated with the allocation profile 
AllocationItemsAllocationItem[]

Array of allocation items

NameTypeDescription
AssetGuidId of the instrument
AllocationPercentageDecimalThe allocation percentage for the asset
 
Code Block
languagexml
themeRDark
titleXML request example
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <GetAllocationProfiles xmlns="http://tempuri.org/">
      <req>
        <Credentials>
          <UserName>yourusername</UserName>
          <Password>yourpassword</Password>
        </Credentials>
        <identify>youridentifier</identify>
        <Args>
          <BrickId xsi:nil="true" />
          <Owner xsi:nil="true" />
          <Key>AllocationProfile1</Key>
        </Args>
        <Fields>
          <BrickId>true</BrickId>
          <Name>true</Name>
          <Key>true</Key>
          <AllocationItems>false</AllocationItems>
          <Owner>true</Owner>
        </Fields>
      </req>
    </GetAllocationProfiles>
  </s:Body>
</s:Envelope>