Extracting fields from 2 or more reports in DSS using API

Hello, I have 16 K list of RICs that i need to pull data for a month from 3 DSS templates. Can you tell me how I can do this via REST API (postman code)


Field

DSS Template

Bid

Elektron Timeseries

Ask

Elektron Timeseries

Universal Ask Price

Composite

Universal Bid Price

Composite

Universal Close Price

Composite

Close Price

Composite

Trade Price 1

Elektron EOD Pricing

Best Answer

  • Jirapongse
    Answer ✓

    @darshpatel

    You need to send three separated requests; one for each template.

    Each request contains the instrument list.

    Otherwise, you can create an instrument list on DSS server and then use that identifer list in each request. For example:

      "IdentifierList": {
                "@odata.type": "#DataScope.Select.Api.Extractions.ExtractionRequests.InstrumentListIdentifierList",
                "InstrumentListId": "0x08832f57fe98dc3f"
            },

    0x08832f57fe98dc3f is my instrumnet list Id avaialble on the DSS server. This list contains five instruments.

    1716797151370.png

    You can use the DSS Web GUI or DSS REST API to create instrument lists.

    1716797024072.png


Answers