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
| Parameter | Type | Required | Description |
|---|---|---|---|
databaseId | string | No | Limit 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"
}
]
}
| Field | Description |
|---|---|
id | The dashboard id — use it as dashboardGroupId when adding a query |
url | A link to view the dashboard in Draxlr (global dashboards use an accessible database as context) |
name | The dashboard name |
isGlobal | Whether the dashboard is global (spans databases) |
databaseId | The database the dashboard belongs to (null for global) |
databaseName | The database name (Global for global dashboards) |