The Refinitiv Developer Portal has a working example of Chain Resolution and it is included in Tutorial 15 of the current Postman collection. This works fine, but I have a chain that resolves to "Historical RICs" and so requests need to be qualified. . Can I apply something similar for the chain resolution of 0#TFI: ? At the moment using the tutorial 15 example as is, I get an error message for "0#TFI:" but I do not get with "0#DJI:"
{
"@odata.context": "https://hosted.datascopeapi.reuters.com/RestApi/v1/$metadata#Collection(ThomsonReuters.Dss.Api.Search.HistoricalChainInstrument)",
"value": []
}
In in a tick history Time and Sales on demand request in the API I need to specify the following after the instrument list like this extract below (see "ValidationOptions section).
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers" : [
{
"Identifier" : "TIEFJ21",
"IdentifierType" : "Ric"},
{ "Identifier" : "TIEFK21",
"IdentifierType" : "Ric"
}
],
"ValidationOptions": {"AllowHistoricalInstruments": true},
"UseUserPreferencesForValidationOptions": false
},