Hi,
I'm using .NET DSS REST example Tutorial 8 restful_api_TandC.sln to translate ISIN to RIC using the TermsAndConditionsExtractionRequest.
When I specify the instrument without using the Source field:
new InstrumentIdentifier {Identifier = "ZAE000097580", IdentifierType = IdentifierType.Isin}
It correctly returns RIC "SUIJ.J". However when I try to specify also the Exchange Code for the Johannesburg exchange "JSE" in the Source field I get no results:
new InstrumentIdentifier {Identifier = "ZAE000097580", IdentifierType = IdentifierType.Isin, Source = "JSE"}
Do you know why specifying the exchange code in the Source field doesn't work? AFAIK the "JSE" exchange code should be correct. Thanks for any hint.
Petr