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 |
None. |
|
| 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": "UbgvdST2Uk+QqOgIwvVatg==",
"identifierGuid": "752fb851-f624-4f52-90a8-e808c2f55ab6",
"id": 1,
"name": "sample string 2",
"active": true,
"visibleToAll": true,
"isDefault": true,
"createdDate": "2026-04-03T06:15:10.7407411",
"createdByUser": "sample string 7",
"lastUpdated": "2026-04-03T06:15:10.7407411",
"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-04-03T06:15:10.7407411+00:00</CreatedDate>
<ID>1</ID>
<Identifier>UbgvdST2Uk+QqOgIwvVatg==</Identifier>
<IdentifierGuid>752fb851-f624-4f52-90a8-e808c2f55ab6</IdentifierGuid>
<IsDefault>true</IsDefault>
<LastUpdated>2026-04-03T06:15:10.7407411+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.