How to add Next Call Date, Ultimate Parent ID, and Organization Ultimate Parent using rdp api? I tried the following code but several columns didn't show up anything (TR.FINextCallDate, TR.FIPurposeDescription, TR.FIWorstRedemEvent, TR.MUNIRating, TR.UltimateParentId, TR.UltimateParent, TR.CompanyCntPostalCodeAddr).
response = rdp.Search.search(
view = rdp.SearchViews.MunicipalInstruments,
top = 10000,
select = "IssuerName, Ticker, CouponRate, IssueDate, MaturityDate, CUSIP, RIC, \
TR.FINextCallDate, TR.FIPurposeDescription, TR.FIWorstRedemEvent,\
TR.MUNIRating, TR.UltimateParentId, TR.UltimateParent, TR.CompanyCntPostalCodeAddr"
)
response.data.df
How to fix this?