For a deeper look into our DataScope Select REST API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
3 4 6 7

DSS field for exchange name where instrument is listed

Dear,


We are doing integration with Reuter for reference data.
We want to know DSS field name which we can use for identifying in which exchange the instrument is (Equity/Debt/Mutual Fund) listed on.

Thanks,
Vaibhav Korade

dss-rest-apidatascope-selectdss
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
Accepted
11.3k 25 9 14

@vaibhav.korade,

You can use the "Exchange Code" and "Exchange Description" field of the Terms and Conditions report template to retreive exchange information where the instrument trades.

POST https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/ExtractWithNotes

{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
        "ContentFieldNames": [
           "Exchange Code",
           "Exchange Description"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                {
                    "Identifier": "IBM.N",
                    "IdentifierType": "Ric"
                }
            ],
            "ValidationOptions": null,
            "UseUserPreferencesForValidationOptions": false
        }
    }
}

Response:

{
    "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.ExtractionResult",
    "Contents": [
        {
            "IdentifierType": "Ric",
            "Identifier": "IBM.N",
            "Exchange Code": "NYS",
            "Exchange Description": "New York Stock Exchange"
        }
    ],

You can also find more information in the REST API Tutorial 7: On Demand T&C extraction and .Net SDK Tutorial 8: On Demand: Terms & Conditions

Other available fields can be found in the DataScope Select 11.1 Field Information document.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
18.2k 21 13 21

You can go to https://hosted.datascopeapi.reuters.com/RestApi.Help/Home/Downloads then download the example application.

Run the example and go to "Scheduled Extractions" >> "Get Available Fields"

You can follow this method to get the available fields.


dss-getfield.png (93.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
13.7k 26 8 12

@vaibhav.korade, as a more generic answer, note that the DSS programming without SDK Tutorial has a section on Best practices and Tips, which contains a section on understanding API calls. That section contains a sub section on determining available field names, which should help you understand how to find any data fields you might require.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.