...or another endpoint ?
How to get the value of field "TR.FundLaunchDate" via API PLAYGROUND using searchlight or lookup or another endpoint ?
For example I use this EndPoint :
https://api.refinitiv.com/discovery/searchlight/v1/
with this Body Request
{
"View": "FundQuotes",
"Filter": "(AssetState ne 'DC' and (RCSIssuerDomicileCountry xeq 'G:5M' and {0}(ExchangeName xeq 'Lipper')))",
"Boost": "AssetState ne 'DC'",
"Select": "IssuerCommonName,IssueISIN,IssuerCountry,Currency,FundLaunchDate,IssuerAdvisorCommonName,RIC,SEDOL,TickerSymbol,AssetStateName,InstrumentPermID",
"Top": 100000
}
The result is :
{
"Warnings": [
"1 invalid 'select' entry was ignored: [FundLaunchDate]"
],
"Total": 8030,
"Hits": [
{
"IssuerCommonName": "Ofi Invest ESG European Convertible Bond RC",
"IssueISIN": "FR0013275138",
"IssuerCountry": "FRA",
"Currency": "EUR",
"IssuerAdvisorCommonName": "Ofi Invest Asset Management",
"RIC": "LP68574282",
"AssetStateName": "Active",
"InstrumentPermID": "18068574282"
},
.......
BUT I don't have the FundLaunchDate field value ?
Can you help me?