List Dashboards

List the dashboards in your Draxlr organization.

Tool: draxlr_list_dashboards

Lists the dashboards in your organization. Optionally filter by a specific database. Use the returned id as the dashboardGroupId for Add Query to Dashboard.

Parameters

ParameterTypeRequiredDescription
databaseIdstringNoLimit results to dashboards of a specific database. Omit to list all dashboards

Example

"List all my Draxlr dashboards."

Arguments:

{}

Response

{
  "count": 2,
  "dashboards": [
    {
      "id": "665f2a119b1e4a0012abd100",
      "url": "https://app.draxlr.com/dashboard/665f1c2a9b1e4a0012ab34cd/665f2a119b1e4a0012abd100",
      "name": "Sales Overview",
      "isGlobal": false,
      "databaseId": "665f1c2a9b1e4a0012ab34cd",
      "databaseName": "Sales DB"
    },
    {
      "id": "665f2a119b1e4a0012abd200",
      "url": "https://app.draxlr.com/dashboard/665f1c2a9b1e4a0012ab34cd/665f2a119b1e4a0012abd200",
      "name": "Company KPIs",
      "isGlobal": true,
      "databaseId": null,
      "databaseName": "Global"
    }
  ]
}
FieldDescription
idThe dashboard id — use it as dashboardGroupId when adding a query
urlA link to view the dashboard in Draxlr (global dashboards use an accessible database as context)
nameThe dashboard name
isGlobalWhether the dashboard is global (spans databases)
databaseIdThe database the dashboard belongs to (null for global)
databaseNameThe database name (Global for global dashboards)