create_dashboard
Creates a new Dynatrace dashboard by submitting a name and JSON content either inline or from a file. Requires write access to be enabled.
Instructions
Create a new dashboard (WRITE). Sends a multipart/form-data POST per the Document Service spec. The content object is serialized to JSON and sent as the 'content' part with Content-Type application/json. Provide the content inline via 'content' OR from a file via 'contentPath' (not both). Requires DT_ENABLE_WRITES=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Dashboard display name. | |
| content | No | Dashboard content as a JSON object (e.g. { tiles: [] }). | |
| contentPath | No | Absolute or cwd-relative path to a JSON file whose contents become the dashboard content. Provide exactly one of content or contentPath. |