update_dashboard
Update a Dynatrace dashboard by providing its ID and version. Change its name, inline content, or load new content from a JSON file.
Instructions
Update an existing dashboard (WRITE). Uses PATCH /documents/{id} with multipart/form-data per the spec. Optimistic locking: you must supply the current document version. At least one of name, content, or contentPath must be provided. Requires DT_ENABLE_WRITES=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Dashboard document id. | |
| version | Yes | Current document version for optimistic locking (required by the spec). | |
| name | No | New display name (optional). | |
| content | No | New dashboard content as a JSON object (optional). | |
| contentPath | No | Absolute or cwd-relative path to a JSON file whose contents become the new dashboard content. Mutually exclusive with content. |