POST api/dashboard

Add dashboard

Request Information

URI Parameters

None.

Body Parameters

Dashboard
NameDescriptionTypeAdditional 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": "oNpCccsWsEC+FRN7z92sSQ==",
  "identifierGuid": "7142daa0-16cb-40b0-be15-137bcfddac49",
  "id": 1,
  "name": "sample string 2",
  "active": true,
  "visibleToAll": true,
  "isDefault": true,
  "createdDate": "2025-06-14T06:01:07.6016023",
  "createdByUser": "sample string 7",
  "lastUpdated": "2025-06-14T06:01:07.6016023",
  "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-06-14T06:01:07.6016023+00:00</CreatedDate>
  <ID>1</ID>
  <Identifier>oNpCccsWsEC+FRN7z92sSQ==</Identifier>
  <IdentifierGuid>7142daa0-16cb-40b0-be15-137bcfddac49</IdentifierGuid>
  <IsDefault>true</IsDefault>
  <LastUpdated>2025-06-14T06:01:07.6016023+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.