I'm using DSS API dlls to fetch a list of Rics from a list of Isins.
However, the DSS API is fetching the first row from the list. But how to know if it is the right one?
My code:
var extractionRequest = new TermsAndConditionsExtractionRequest { IdentifierList = InstrumentIdentifierList.Create(instrumentIdentifierList, null, false), ContentFieldNames = new[] { "RIC", "Trading Status" } }; var extractedRows = ExtractionsContext.Extract(extractionRequest).ToArray();
What DDS API is fetching:
From Datascope Select:
In the list above, there are 3 RICs but the API is fetching only the first one.
Is this the right one?
How to know it?