PUT api/dashboard/{id}
edit dashboard
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
Dashboard| Name | Description | Type | Additional information |
|---|---|---|---|
| Identifier | Collection of byte |
None. |
|
| IdentifierGuid | globally unique identifier |
None. |
|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Active | boolean |
None. |
|
| VisibleToAll | boolean |
Deprecated. |
|
| IsDefault | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| CreatedByUser | string |
None. |
|
| LastUpdated | date |
None. |
|
| UpdatedByUser | string |
None. |
|
| ChartIds | Collection of integer |
Relation. This field may not always be loaded or used for updates. |
Request Formats
application/json, text/json
Sample:
{
"identifier": "uIgZ5oo+/k6to87gKZmUfA==",
"identifierGuid": "e61988b8-3e8a-4efe-ada3-cee02999947c",
"id": 1,
"name": "sample string 2",
"active": true,
"visibleToAll": true,
"isDefault": true,
"createdDate": "2026-06-03T18:31:49.8118881",
"createdByUser": "sample string 7",
"lastUpdated": "2026-06-03T18:31:49.8118881",
"updatedByUser": "sample string 8",
"chartIds": [
1,
2
]
}
application/xml, text/xml
Sample:
<Dashboard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Dashboard">
<Active>true</Active>
<ChartIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</ChartIds>
<CreatedByUser>sample string 7</CreatedByUser>
<CreatedDate>2026-06-03T18:31:49.8118881+00:00</CreatedDate>
<ID>1</ID>
<Identifier>uIgZ5oo+/k6to87gKZmUfA==</Identifier>
<IdentifierGuid>e61988b8-3e8a-4efe-ada3-cee02999947c</IdentifierGuid>
<IsDefault>true</IsDefault>
<LastUpdated>2026-06-03T18:31:49.8118881+00:00</LastUpdated>
<Name>sample string 2</Name>
<UpdatedByUser>sample string 8</UpdatedByUser>
<VisibleToAll>true</VisibleToAll>
</Dashboard>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.