Updating Dashboard Group Details
Last updated - 11 July, 2023
In this article
You can use LogicMonitor REST API v3 to update dashboard group details. You must authenticate yourself before making the API request.
To make partial updates to a dashboard group, make a PATCH
request. To completely update a dashboard group, make a PUT
request.
URI: PATCH /dashboard/groups/{id}
URI: PUT /dashboard/groups/{id}
Note:
- As per the REST standards, any property which is not specified in the PUT request will revert to its default value.
- The template field works only for the POST method.
Parameter | Type | Description |
id | Integer | (Mandatory) The Id of the dashboard group that you want to update. |
template | JSON Object | The template which is used for importing dashboard group. |
widgetTokens | JSON Object | The tokens are assigned at the group level. The widgetTokens consist of the following:
|
name | String | (Mandatory) The name of the dashboard group that you want to update. Example – "name": "LogicMonitor Dashboards" |
description | String | The description of the dashboard group. Example – "description": "Servers in LA DataCenter" |
parentId | Integer | The Id of the parent dashboard group. Example – "parentId": 4 |