getDataObjects()
Retrieves the list of data objects in the current application.
Returns
A Promise that resolves to a response containing the list of data objects corresponding to each case type in the current application.
Parameters
This API does not have parameters.
Usage example
In this example, the API returns a Promise that resolves to a response containing the list of data objects.
PCore.getAnalyticsUtils().getDataObjects().then(response => { console.log(response.data); }).catch(() => { ... });
// console output: [{ classID: "OPB1HW-MyApp-Work-MyCase", defaultListViewData: "D_MyCaseList", (other properties like: description, name, links) }, ...]
Previous topic exportToExcel(exportRequest) Next topic getDataPageObjects(useCache)