I am interested in retrieving issuer curve information using Python.
Currently I have the following working example:
df = ld.discovery.search(
view = search.Views.FIXED_INCOME_QUOTES,
query = "BASF SE",
select = "BusinessEntity,PI,SearchAllCategoryv3,SearchAllCategoryv2,SearchAllCategory,DTSubjectName,RCSCurveTypeLeaf,RIC,ContributorCommonName,RCSTermMaturityLeaf,RCSCurveForwardPeriodLeaf,RCSFirstCurrencyLeaf,RCSCurveCountryLeaf,CurveRating,RCSCurveIndustryLeaf,RCSCurveRateTypeLeaf,IsCurveorConstituent,CurvePermId,Leg2UnderlyingRIC,RCSCurveType,RCSFirstCurrency"
)
I would feel more comfortable to used identifiers (like PermId = 4295869198 in the case of BASF) instead of strings "BASF SE" for querying or filtering in order to avoid errors. Is there a way to achieve thisest wishes