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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials

question

Upvotes
Accepted
1 0 0 0

Announcement Date using the Composite Report Template

Hi, I am trying to get the Announcement Date for a security using the Composite Report Template. I am using the following API Call: { "ExtractionRequest": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ReportTemplates.CompositeReportTemplate", "ContentFields": [ { "FieldName": "ISIN", "Format": null }, { "FieldName": "Announcement Date", "Format": null } ], "IdentifierList": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList", "InstrumentIdentifiers": ["DE000NLB1KJ5"] } } } . Can you also show how I could extract the announcement dates for a bunch of securities? Thanks.

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

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

1 Answer

Upvotes
Accepted
11.3k 25 8 13

Hi @adi-dev,

You can use On-demand extraction to extract Composite report data. For more details, please see this tutorial. Below is the sample.

{
    "ExtractionRequest": {
        "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.CompositeExtractionRequest",
        "ContentFieldNames": [
           "ISIN",
           "Announcement Date"
        ],
        "IdentifierList": {
            "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
            "InstrumentIdentifiers": [
                { "Identifier": "DE000NLB1KJ5", "IdentifierType": "Isin" },
                { "Identifier": "US4592001014", "IdentifierType": "Isin" }                                    
            ]
        }
    }
}
icon clock
10 |1500

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

Click below to post an Idea Post Idea