PUT api/dashboard/{id}
edit dashboard
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
DashboardName | 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": "0IBc4H8Ub02VMkRaDNe6Cw==", "identifierGuid": "e05c80d0-147f-4d6f-9532-445a0cd7ba0b", "id": 1, "name": "sample string 2", "active": true, "visibleToAll": true, "isDefault": true, "createdDate": "2025-08-02T23:27:00.6441273", "createdByUser": "sample string 7", "lastUpdated": "2025-08-02T23:27:00.6441273", "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>2025-08-02T23:27:00.6441273+00:00</CreatedDate> <ID>1</ID> <Identifier>0IBc4H8Ub02VMkRaDNe6Cw==</Identifier> <IdentifierGuid>e05c80d0-147f-4d6f-9532-445a0cd7ba0b</IdentifierGuid> <IsDefault>true</IsDefault> <LastUpdated>2025-08-02T23:27:00.6441273+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.