cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

Get Dashboards of a specific User

IPA
10-Marble
10-Marble

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.

1 ACCEPTED SOLUTION

Accepted Solutions

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;

    }

}

View solution in original post

2 REPLIES 2

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;

    }

}

IPA
10-Marble
10-Marble
(To:CarlesColl)

Thank you very much, Carles! This is what I was looking for.

Top Tags