https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Deletes a dashboard from the application.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Creates a copy of an existing dashboard.
Optional
dashboardObj: { new_label?: string; setup?: object }https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Modifies an existing dashboard's properties.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Generates a new public access token for the dashboard.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
If receive an error "Authorization Denied", check policy in Access Management.
const resources = new Resources({ token: "YOUR-PROFILE-TOKEN" });
const publicKey = await resources.dashboards.getPublicKey("dashboard-id-123", "1day");
console.log(publicKey); // { token: 'token-id-123', expire_time: '2025-01-02T00:00:00.000Z' }
Retrieves detailed information about a specific dashboard.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Lists all dashboards from your application with pagination support.
Optional
queryObj: DashboardQueryhttps://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
If receive an error "Authorization Denied", check policy Dashboard / Access in Access Management.
const result = await Resources.dashboards.list({
page: 1,
fields: ["id", "name"],
amount: 10,
orderBy: ["label", "asc"]
});
console.log(result); // [ { id: 'dashboard-id-123', label: 'My Dashboard', ...}, ... ]
Lists all analyses associated with a dashboard.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Lists all devices associated with the dashboard.
https://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Executes an analysis from a widget's header button.
Optional
scope: objecthttps://help.tago.io/portal/en/kb/articles/15-dashboard-overview Dashboard Overview
Creates a new dashboard in your application.