GET api/paneltype

Returns all Panel Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PanelType
NameDescriptionTypeAdditional information
PanelTypeId

Sedona internal autonumber for the Panel Type record

integer

None.

PanelTypeCode

Abbreviated Panel Type Code

string

String length: inclusive between 0 and 25

Description

Full description of Panel Type

string

String length: inclusive between 0 and 50

Inactive

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PanelTypeId": 1,
    "PanelTypeCode": "sample string 2",
    "Description": "sample string 3",
    "Inactive": true
  },
  {
    "PanelTypeId": 1,
    "PanelTypeCode": "sample string 2",
    "Description": "sample string 3",
    "Inactive": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPanelType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
  <PanelType>
    <Description>sample string 3</Description>
    <Inactive>true</Inactive>
    <PanelTypeCode>sample string 2</PanelTypeCode>
    <PanelTypeId>1</PanelTypeId>
  </PanelType>
  <PanelType>
    <Description>sample string 3</Description>
    <Inactive>true</Inactive>
    <PanelTypeCode>sample string 2</PanelTypeCode>
    <PanelTypeId>1</PanelTypeId>
  </PanelType>
</ArrayOfPanelType>