Endpoint Parameters

  • Request parameters

    Name Type Origin Description
    ClientKey ClientKey Query-String The client identifier in key format
    TransferIds String [] Query-String Comma separate list of Transfer IDs
  • 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 Transfer [] 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 /atr/v1/securitiestransfers/transfers?ClientKey={ClientKey}&TransferIds={TransferIds}
  • Response Example

    Response body
    {
      "__count": 1,
      "Data": [
        {
          "AccountId": "3495867632",
          "AccountManager": "ABC Investment Bank",
          "AssetType": "Stock",
          "Broker": {
            "Contact": "Broker Contact 1",
            "CountryCode": "DK",
            "Email": "BrokerEmail1@email.com",
            "Name": "ABC Investment Bank",
            "Phone": "+45 12345678"
          },
          "ClientAccountAtBroker": "0539633313",
          "Securities": [
            {
              "Currency": "EUR",
              "Description": "Apple Inc.",
              "Exchange": "NASDAQ",
              "InstrumentSymbolCode": "AAPL:xnas",
              "IsinCode": "US0378331005",
              "Price": 194.82,
              "PurchaseDate": "2020-06-20T00:00:00Z",
              "Quantity": 24,
              "Uic": 211
            },
            {
              "Currency": "GBP",
              "Description": "ABB Ltd",
              "Exchange": "SSE",
              "InstrumentSymbolCode": "ABB:xome",
              "IsinCode": "CH0012221716",
              "Price": 32.82,
              "PurchaseDate": "2020-09-10T00:00:00Z",
              "Quantity": 7,
              "Uic": 101
            }
          ],
          "TradeDate": "2024-04-29T00:00:00Z",
          "TransferDirection": "TransferIn",
          "TransferId": "414"
        }
      ]
    }