Update Dashboard
appd_update_dashboardUpdate a dashboard's name, description, canvas size, or replace its entire widget set. All existing widgets are replaced if widgets are provided.
Instructions
Update an existing dashboard's properties and/or widgets.
IMPORTANT: If you provide widgets, this REPLACES all existing widgets. To add a single widget without losing existing ones, use appd_add_widget_to_dashboard instead.
Args:
dashboardId (number): Dashboard ID
name (string, optional): New name
description (string, optional): New description
height/width (number, optional): New canvas size
widgets (array, optional): Complete widget set (replaces existing)
Returns: The updated dashboard object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New dashboard name. | |
| width | No | New canvas width. | |
| height | No | New canvas height. | |
| widgets | No | Complete set of widgets. NOTE: This replaces ALL existing widgets. | |
| dashboardId | Yes | The ID of the dashboard to update. | |
| description | No | New dashboard description. |