dashboard.get_dashboard_by_id
dashboard_get_dashboard_by_idFetch a specific dashboard by its ID from Sisense. Returns the dashboard object or an error if no match exists.
Instructions
Retrieve a specific dashboard by its ID. Sends GET /api/v1/dashboards/admin?dashboardType=owner&id={dashboard_id} against the admin endpoint.
Returns: list[dict[str, Any]] | dict[str, Any] The matching dashboard objects on success, or {"error": "..."} when the request fails or no dashboard is found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dashboard_id | Yes | The ``oid`` of the dashboard to retrieve. |