> ## Documentation Index
> Fetch the complete documentation index at: https://docs.molesignal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 创建仪表盘

> 创建原生或 Grafana 导入的仪表盘。

```http theme={null}
POST /api/v1/dashboards
```

原生创建，或导入 Grafana 仪表盘模型。未识别字段无损往返，导入/导出不丢信息。

请求体把完整仪表盘对象放在 `model` 中，也可附带 `folder_id`：

```json theme={null}
{
  "model": {
    "uid": "service-overview",
    "title": "Service overview",
    "tags": ["operations"],
    "panels": []
  },
  "folder_id": null
}
```

模型必须包含非空的 `uid` 和 `title`。创建仪表盘需要 `dashboards.create`。
