Many ISINs we send via DSS Rest API return with message "not found".
What do I have to do for DSS Rest API returns these and many other ISINs?
Here are examples of ISINs: BRBMEFVF3KC7, BRBMEFVF3KD5
For a deeper look into our DataScope Select SOAP API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials
Many ISINs we send via DSS Rest API return with message "not found".
What do I have to do for DSS Rest API returns these and many other ISINs?
Here are examples of ISINs: BRBMEFVF3KC7, BRBMEFVF3KD5
Hi @everton.solon,
Using Global Search Box, I can find the information of the ISINs. However, the ISINs are marked as "Historical Instrument". This could be the reason why the ISINs is not available on Instrument Search and T&C report template. For more detailed information, please contact DSS support by opening a new case directly with Content Helpdesk Online under product = Datascope Select.
Hello @everton.solon,
What requests are you looking to run on these instruments?
I have run HistoricalSearch request:
{ {protocol}}{ {host}}{ {api}}Search/HistoricalSearch
{ "Request": { "Identifier": "BRBMEFVF3KC7", "IdentifierType": "Isin", "Range": { "Start": "2008-01-01T00:00:00.000Z", "End": "2020-01-01T00:00:00.000Z" } } }
see the result:
{ "@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Search.HistoricalSearchResult)", "value": [ { "Identifier": "VF3375M1", "IdentifierType": "Ric", "Source": "", "Key": "VjF8MHgzMDAwMDAwMDAwMDAwMDAwfDB4MzAwMDAwMDAwMDAwMDAwMHx8fHx8fHxWRjMzNzVNMXw", "Description": "Historical Instrument", "InstrumentType": "Unknown", "Status": "Valid", "DomainCode": "6", "FirstDate": "2019-11-05T00:00:00.000Z", "LastDate": "2020-09-29T00:00:00.000Z", "History": [] }, { "Identifier": "VF3375M1", "IdentifierType": "Ric", "Source": "", "Key": "VjF8MHgzMDAwMDAwMDAwMDAwMDAwfDB4MzAwMDAwMDAwMDAwMDAwMHx8fHx8fHxWRjMzNzVNMXw", "Description": "Historical Instrument", "InstrumentType": "Unknown", "Status": "Valid", "DomainCode": "7", "FirstDate": "2019-11-17T00:00:00.000Z", "LastDate": "2020-09-29T00:00:00.000Z", "History": [] }, { "Identifier": "VF3375M1", "IdentifierType": "Ric", "Source": "", "Key": "VjF8MHgzMDAwMDAwMDAwMDAwMDAwfDB4MzAwMDAwMDAwMDAwMDAwMHx8fHx8fHxWRjMzNzVNMXw", "Description": "Historical Instrument", "InstrumentType": "Unknown", "Status": "Valid", "DomainCode": "8", "FirstDate": "2019-11-17T00:00:00.000Z", "LastDate": "2020-09-29T00:00:00.000Z", "History": [] } ] }
Also tried HistoricalReferenceExtractionRequest, see the result.
Hope this helps
Hi @zoya.farberov
Sorry for the missing details of the information.
I'm using only
I'm only using "Terms And Conditions" because that's what is permissioned for my account.
This is the code I'm using:
var extractionRequest = new TermsAndConditionsExtractionRequest { IdentifierList = InstrumentIdentifierList.Create(instrumentIdentifierList, null, false),//<- instrumentIdentifierList, validationOptions, useUserPreferencesForValidationOptions ContentFieldNames = new[] { "RIC", "Trading Status" } }; var extractedRows = ExtractionsContext.Extract(extractionRequest).ToArray();
Hello @everton.solon,
Are you able to return the results via DSS GUI? From what I see, these ISINs do not come up by T&C via DSS GUI search. If that is the case, API will not be able to access them either, as both interact with the same service.
I think T&C covers certain types of instruments, and these instruments are not covered. However, moderators of this forum do not have the deep knowledge of all Refinitiv content.
To obtain a definitive answer to your question, why this type of instruments is not covered under Terms & Condtions, as a customer, suggest opening a new case directly with Content Helpdesk Online under product = Datascope Select.
Please let us know if you are able to proceed
Hi @zoya.farberov
Sorry for the delay in responding just now.
I will check if the "HistoricalSearchResult" is available for our account.
Thank you very much for your attention!