Hi all,
We have some doubts about the changes that will occur in "Timeseries Pricing and Single Historical Price".
This is an example in Postman of the requests we usually do:
We would like to know if we can continue using these conections:
"#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TimeSeriesExtractionRequest" "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentListIdentifierList" "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList"
Another example would be this GET request:
https://hosted.datascopeapi.reuters.com/RestApi/v1/Extractions/InstrumentLists('0x069c14deacf08005')/ThomsonReuters.Dss.Api.Extractions.InstrumentListGetAllInstruments
Thank you in advance for your help,
Elisa
There are only 2 API call endpoints that are being deprecated:
The other calls are not impacted.
So, to come back to the specific API calls you mention, all of these will continue to work:
But this one is being deprecated:
It is replaced with this call:
This call is described in DSS REST tutorial 4.
Please note you need to make some changes to the body of the request:
For the example in your screenshot, the following fields require changing:
The call in your screenshot would need to be modified to this:
{ "ExtractionRequest": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.PriceHistoryExtractionRequest", "ContentFieldNames": [ "Instrument ID", "Instrument ID Type", "ISIN", "RIC", "Ticker", "Exchange Description", "Currency Code", "Trade Date", "Last Trade Price", "Net Asset Value", "Universal Close Price", "User Defined Identifier" ], "IdentifierList": { "@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentListIdentifierList", "InstrumentListId": "0x069c14deacf08005" }, "Condition": { "AdjustedPrices": true, "QueryStartDate": "2019-11-22T00:00:00.000Z", "QueryEndDate": "2019-11-25T00:00:00.000Z" } } }
For more information refer to the Product Change Notification 10897, which includes a spreadsheet with the data field mapping changes.