I am a beginner in developing with DSS.
I’m trying to bulk download all equity stocks in Australia Stock exchange and get their Sedol/Cusin/Isin ids. From reading the docs, I think I should do a EquitySearch and set the Exchange param to “ASX” and then for every stock it returns, I should do a InstrumentSearch do a query for that stock and specify the PreferredIdentifierType to “Isin” and then do the same query again for “Sedol” and “Cusin”. Is there a more efficient way to do this so that I could get the multiple identifiers for all instruments in a single query?
Another thing I have tried is to make a Extraction request and filter by FileCode:
{"ExtractionRequest":{"@odata.type":"#ThomsonReuters.Dss.Api.Extractions.SubjectLists.InstrumentListItem","Identifier":"66","IdentifierType":"FileCode"}}
But that didn't seem to work due to malformed request content.
It would be great if someone could show me a REST query for this.
Thanks!