Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    $inlinecount String Query-String Specifies that the response to the request should include a count of the number of entries in the collection
    $skip Integer Query-String The number of entries to skip from the beginning of the collection
    $top Integer Query-String The number of entries to return from the beginning of the collection
    OwnerKey ClientKey Query-String Unique key identifying the owner. This is the clientKey of the client under which the list of clients belongs. Default: Logged-in user's client.
  • Response Parameters

    View Response Codes
    Name Type Description
    __count Number The total count of items in the feed.
    __next String The link for the next page of items in the feed.
    Data ClientResponse [] The collection of entities for this feed.
    MaxRows Number The maximum number of rows that can be returned (if applicable).
  • Request Example

    Request URL
    GET /port/v1/clients?$inlinecount=AllPages&$skip=1&$top=1&OwnerKey=493b43a5-fe85-4d1f-9071-dd4a9d4e42a4
  • Response Example

    Response body
    {
      "__next": "/openapi/port/....../?$top=1&$skip=1",
      "Data": [
        {
          "AllowedTradingSessions": "Regular",
          "ClientId": "654321",
          "ClientKey": "V-B8jOk9SM8QdqN1u2Bjtw==",
          "ContractOptionsTradingProfile": "None",
          "CurrencyDecimals": 0,
          "DefaultAccountId": "192134INET",
          "DefaultAccountKey": "uke8gbCUrk6l7TnS5fnIdQ==",
          "DefaultCurrency": "EUR",
          "ForceOpenDefaultValue": false,
          "IsMarginTradingAllowed": false,
          "IsVariationMarginEligible": false,
          "LegalAssetTypes": [
            "Stock",
            "FxSpot",
            "CfdOnStock",
            "Bond",
            "ContractFutures"
          ],
          "LegalAssetTypesAreIndicative": false,
          "MarginCalculationMethod": "Default",
          "Name": "Mr. Anthony Test",
          "PositionNettingMethod": "FIFO",
          "PositionNettingMode": "EndOfDay",
          "PositionNettingProfile": "FifoEndOfDay",
          "ReduceExposureOnly": false,
          "SupportsAccountValueProtectionLimit": false
        }
      ]
    }