I haven't been able to query non-equity (foreign exchange forward) series using Python API (beta version, as of 3/23/2022) that I was able to on refinitiv workspace desktop app and the request table on a excel sheet with the refinitiv add-on.
An example series is "BBGBP1F" which is USD to UK Pound 1M forward, and it can be found in the desktop app by typing into the search bar as well as using the find series button in the request table excel sheet. However, it seems it cant be queried using the python API. I have tried:
response = rd.content.symbol_conversion.Definition(symbols=["BBGBP1F", "AAPL.O"]).get_data()
response.data.df
which only returns result for apple (AAPL.O) but none for BBGBP1F.
also no result for
response = rd.content.search.Definition('BBGBP1F').get_data()
response.data.df
Was I not looking at the right place in Python?