Monitoring & Collection/Grafana Integration
POSTGrafanaSince 1.0SynchronousAuth Required
ImportDashboardTemplate
Import a dashboard template into a tenant's Grafana organization
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Path Parameters
Request Inputs
Path Parameters
templateIdStringRequiredUUID of the template to import
Body Fields
tenantIdStringRequiredUUID of the tenant importing the template
Example: tenant-001-xyz
datasourceIdStringRequiredUUID of the datasource to link to the imported dashboard
Example: ds-001-abc
overwriteBooleanRequiredWhether to overwrite an existing imported dashboard with the same template
Example: false
folderIdIntegerRequiredGrafana folder ID to import the dashboard into
Example: 20
Responses
Endpoint
POST/api/v1/monitoring/grafana/dashboard-templates/{templateId}/import
/api/v1/monitoring/grafana/dashboard-templates/{templateId}/import
Request Example
curl -X POST '{host}/api/v1/monitoring/grafana/dashboard-templates/{templateId}/import' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"tenantId":"tenant-001-xyz","datasourceId":"ds-001-abc","overwrite":false,"folderId":20}'
Response Example
200{
"id": "imported-001-abc",
"templateId": "tpl-vm-overview",
"grafanaUid": "abcd1234efgh",
"grafanaUrl": "http://grafana.example.com/d/abcd1234efgh",
"datasourceId": "ds-001-abc",
"tenantId": "tenant-001-xyz",
"importedAt": "example"
}Change History
This API has no change history records yet.
