Get Dashboards of a specific User
Is there a way to get all the dashboards that were created by a specific user by script?
This would be very useful as I would like to delete all the dashboards that were created by a user when this user is deleted.
Is there a way to get all the dashboards that were created by a specific user by script?
This would be very useful as I would like to delete all the dashboards that were created by a user when this user is deleted.
This is an approximation:
var result = Resources["DashboardFunctions"].SearchAllDashboards();
result.AddField({name: "owner", baseType: "STRING" });
var creator
for each(row in result.rows) {
creator = Dashboards[row.id].GetConfigurationChangeHistory().Find({ changeAction: "CREATE" });
if (creator!=null) {
row.owner = creator.user;
}
}
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.