GET /v1/services/dashboardServices/name/{fqn}/export
Import & Export Dashboard Services
Import and export dashboard service metadata as CSV
GET
GET /v1/services/dashboardServices/name/{fqn}/export
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.
Import & Export
Export dashboard service metadata (dashboards, charts, owners, tags) to CSV and import changes back. Supports both synchronous and asynchronous operations.Export to CSV
GET /v1/services/dashboardServices/name/{fqn}/export
Fully qualified name of the dashboard service (e.g.,
sample_looker).Export Async
GET /v1/services/dashboardServices/name/{fqn}/exportAsync
Returns a job ID for large exports that can be polled for completion.
Import from CSV
PUT /v1/services/dashboardServices/name/{fqn}/import
Fully qualified name of the dashboard service.
If
true, validates the CSV without applying changes. Set to false to apply.Import Async
PUT /v1/services/dashboardServices/name/{fqn}/importAsync
For large imports, use the async variant which returns a job ID.
GET /v1/services/dashboardServices/name/{fqn}/export
Returns
Export returns CSV text with headers and rows for each child entity. Import returns a summary of changes applied (or validation results for dry run).Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission for import/export |
404 | NOT_FOUND | Dashboard service with given FQN does not exist |
400 | BAD_REQUEST | Invalid CSV format or content |