Versions Compared

Key

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

Filter inputs

...

Name
Type
Description
Available from version
BrickIdGuid

The BrickId of the trade order


CreatedDateDateTimeThe date when the subscription order was created
LimitPriceDecimalThe limit price of the subscription order
OverrideCommissionAmountBoolTrue if the default commission amount should be overriden
CommissionAmountDecimalIf the OverrideCommissionAmount is true this value must be provided
CashAmountDecimalThe amount in cash
InstrumentAmountDecimalThe amount in units
OrderNoStringThe order number of the trade order
OrderTypeKeyStringThe type of the order
InstrumentIdGuidThe associated Instrument brickid
CashIdGuidThe associated Cash brickid
AccountIdGuidThe associated AccountID brickid
IsUnitOrderBoolTrue if the order is traded in units
ExecutionInterfaceIdGuidThe BrickId of the execution interface
StateString

The current state of the subscription order. A subscription order has the following states:

  • Created
  • Done
  • Cancelled

LastPaymentDateDateTimeThe last payment date for the subscription
LegalEntityIdGuidThe associated LegalEntity brickid
IsDVPBoolIf the settlement process is DVP or not
TransferReceiverIdGuidThe associated TransferReceiver brickid
DisplayPercentagePriceBool

If price is in persentage of MinimumLotSize


CommentStringComment on order
ExpectedTradeDateDateTimeExpected Trade date for order
ExpectedSettlementDateDateTimeExpected Settlement date for order
CusomFieldsCustomFieldsObject[]CustomFields is an array of CustomField objects. Each CustomField consists of two strings, FieldName and Value. There are no datatypes associated with these properties, they are just a way for api-users to add custimized data to the object.2.14



Code Block
languagexml
themeRDark
titleXML request example
linenumberstrue
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">
    <GetSubscriptionOrders xmlns="http://tempuri.org/">
      <req>
        <Credentials>
          <UserName>yourusername</UserName>
          <Password>yourpassword</Password>
        </Credentials>
        <identify>youridentifier</identify>
        <Args>
          <OrderNos>
            <string>2508</string>
          </OrderNos>
        </Args>
        <Fields>
          <BrickId>true</BrickId>
          <CreatedDate>true</CreatedDate>
          <LimitPrice>true</LimitPrice>
          <OverrideCommissionAmount>true</OverrideCommissionAmount>
          <CommissionAmount>true</CommissionAmount>
          <CashAmount>true</CashAmount>
          <InstrumentAmount>true</InstrumentAmount>
          <OrderNo>true</OrderNo>
          <OrderTypeKey>true</OrderTypeKey>
          <InstrumentId>true</InstrumentId>
          <CashId>true</CashId>
          <AccountId>true</AccountId>
          <IsUnitOrder>true</IsUnitOrder>
          <ExecutionInterfaceId>true</ExecutionInterfaceId>
          <State>true</State>
          <LastPaymentDate>true</LastPaymentDate>
          <LegalEntityId>true</LegalEntityId>
          <IsDVP>true</IsDVP>
          <TransferReceiverId>true</TransferReceiverId>
        </Fields>
      </req>
    </GetSubscriptionOrders>
  </s:Body>
</s:Envelope>

...