GET /v1/dashboards/{id}
Retrieve a Dashboard
Get a dashboard by ID or fully qualified name
GET
GET /v1/dashboards/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Dashboard
Get a single dashboard by its unique ID or fully qualified name.Get by ID
UUID of the dashboard to retrieve.
Comma-separated list of fields to include (e.g.,
owners,tags,followers,votes,extension,domains,charts,sourceHash).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/dashboards/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the dashboard (e.g.,
sample_superset.10).Comma-separated list of fields to include:
owners, tags, followers, votes, extension, domains, charts, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/dashboards/{id}
Returns
Returns a dashboard object with all requested fields populated.Response
Unique identifier for the dashboard (UUID format).
Dashboard name.
Fully qualified name in format
service.dashboardName.Human-readable display name.
Description of the dashboard in Markdown format.
Reference to the parent dashboard service.
URL of the dashboard in the source system.
Type of dashboard service (e.g., Superset, Looker, Tableau).
Charts associated with the dashboard. Only included when
fields contains charts.Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this dashboard |
404 | NOT_FOUND | Dashboard with given ID or FQN does not exist |