Hi all,
I'm currently using the following code through refinitiv.data API to download data from Views.MUNICIPAL_INSTRUMENTS:
rd.discovery.search(view=search.Views.MUNICIPAL_INSTRUMENTS, select = "IssuerName, MaturityDate, IssueDate, MuniState, CUSIP, ISIN, AssetType, RatingType, SPRating, MoodysRating", top = 20)
However, since this dataset has more than 700 fields, and I was asked to download all the fields to check which ones we need, is there any way to modify the code so that I can download all the fields?
I've tried something like select = "all" but it doesn't work.