get_dashboard
Retrieve dashboard details including cards, layout, and parameters by ID to understand dashboard structure and view all questions in a dashboard.
Instructions
š [SAFE] Get a dashboard by ID including all its cards, layout, and parameters. Use this to understand dashboard structure or see all questions in a dashboard at once. Risk: None - read-only operation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dashboardId | Yes | The ID of the dashboard to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"dashboardId": {
"description": "The ID of the dashboard to retrieve",
"minimum": 1,
"type": "integer"
}
},
"required": [
"dashboardId"
],
"type": "object"
}