How can I use C# APIs to convert SEDOLs into RICs?

I'm using the Refinitiv Data Platform (RDP) API and wondered how I could convert SEDOLs into RICs. I know that it's possible in Python with that API (e.g.: in CodeBook with the code below), but I want to get the same results in C#. Is that possible? If so: what endpoint should I use?


import refinitiv.dataplatform as rdp
rdp.open_desktop_session('DEFAULT_CODE_BOOK_APP_KEY')
rdp.convert_symbols(
    symbols = ['0216238'],
    from_symbol_type = rdp.SymbolTypes.SEDOL
)

Best Answer

Answers