getInsightIDs()
Retrieves all available insights.
Returns
A Promise that resolves to a response containing a list of insights with the related information.
Parameters
This API does not have parameters.
Usage example
In this example, the API returns a Promise that resolves to a response containing a list of insights with the related information.
PCore.getAnalyticsUtils().getInsightIDs().then(response => { console.log(response.data); }).catch(() => { ... });
// console output: {
// pyInsights: [{
// pyID: "124e9385-a623-4c55-ba8e-5af8cbd0ae64",
// pyName: "Saved Insight"
// pyCreateDateTime: "20200630T183653.784 GMT",
// pyCreateOperator: "[email protected]",
// pyUpdateDateTime: "20200630T183656.330 GMT",
// pyUpdateOperator: "[email protected]",
// pxObjClass: "PegaBI-API-Insight"
// }]
// }
Previous topic getInsightByID(insightID) Next topic translateStrings(stringsToTranslate)