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": "2z/A4GCqU0yXs6dz6EoRYw==", "identifierGuid": "e0c03fdb-aa60-4c53-97b3-a773e84a1163", "id": 1, "name": "sample string 2", "active": true, "visibleToAll": true, "isDefault": true, "createdDate": "2025-10-04T23:56:27.2053383", "createdByUser": "sample string 7", "lastUpdated": "2025-10-04T23:56:27.2053383", "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-10-04T23:56:27.2053383+00:00</CreatedDate> <ID>1</ID> <Identifier>2z/A4GCqU0yXs6dz6EoRYw==</Identifier> <IdentifierGuid>e0c03fdb-aa60-4c53-97b3-a773e84a1163</IdentifierGuid> <IsDefault>true</IsDefault> <LastUpdated>2025-10-04T23:56:27.2053383+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.