GET api/paneltype/{id}
Returns the specified Panel Type
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PanelType| Name | Description | Type | Additional 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
}
application/xml, text/xml
Sample:
<PanelType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models"> <Description>sample string 3</Description> <Inactive>true</Inactive> <PanelTypeCode>sample string 2</PanelTypeCode> <PanelTypeId>1</PanelTypeId> </PanelType>