Dear All, how are you?
Is possible to convert or map TICKER to primary RIC using the DSS API? I’m trying it using the function bellow and apparently the IdentifierType": "Ticker is not recognized.
My necessity is obtain a primary company RIC or the issuer RIC for a list of corporate bonds, since DSS doesn’t have an Issuer RIC field.
{
"ExtractionRequest": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.TermsAndConditionsExtractionRequest",
"ContentFieldNames": [
"RIC", "ISIN", "Currency Code", "Exchange Code", "Exchange Code List", "Quote PermID"
],
"IdentifierList": {
"@odata.type": "#ThomsonReuters.Dss.Api.Extractions.ExtractionRequests.InstrumentIdentifierList",
"InstrumentIdentifiers": [
{ "Identifier": "AMZN", "IdentifierType": "Ticker" }
],
"ValidationOptions": {
"AllowHistoricalInstruments": true,
"AllowInactiveInstruments": true,
"AllowOpenAccessInstruments": false
},
"UseUserPreferencesForValidationOptions": false
}
}
}
Thanks in advance!