How to find data filelds such as
in workspace API
Hi @Rakshith_shetty23 ,
You can either use Advanced search application Find content and functionality using the Data Library with Workspace Advanced Search | Devportal or you can use the search.metadata to get all available fields.
import lseg.data as ld from lseg.data.content import search … … response = search.metadata.Definition( view = search.Views.EQUITY_QUOTES ).get_data() response.data.df
You can refer to this Building Search into your Application Workflow article. You can use the _debugall to list all properties and values of an entry, as mentioned in the article.