Dashboards
A Dashboard is a visual collection of charts and data views within a Dashboard Service. It sits below the service and contains Charts.Entity schema follows the OpenMetadata Standard.
Entity Hierarchy
Dashboards belong to a Dashboard Service:Fully Qualified Name
The FQN format for a dashboard is:sample_superset.10
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
PUT | /v1/dashboards | Create or update a dashboard |
POST | /v1/dashboards | Create a dashboard (POST variant) |
GET | /v1/dashboards | List dashboards |
GET | /v1/dashboards/{id} | Get by ID |
GET | /v1/dashboards/name/{fqn} | Get by FQN |
PATCH | /v1/dashboards/{id} | Update by ID |
PATCH | /v1/dashboards/name/{fqn} | Update by name |
DELETE | /v1/dashboards/{id} | Delete by ID |
DELETE | /v1/dashboards/name/{fqn} | Delete by name |
PUT | /v1/dashboards/restore | Restore soft-deleted dashboard |
GET | /v1/dashboards/{id}/versions | List versions |
GET | /v1/dashboards/{id}/versions/{version} | Get specific version |
PUT | /v1/dashboards/{id}/followers | Add follower |
DELETE | /v1/dashboards/{id}/followers/{userId} | Remove follower |
PUT | /v1/dashboards/{id}/vote | Add/update vote |