GET api/systemtype/{id}

Returns the specified System Type

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

SystemType
NameDescriptionTypeAdditional information
SystemId

Sedona internal autonumber for the System Type record

integer

None.

SystemCode

Abbreviated System Type Code

string

String length: inclusive between 0 and 25

Description

Full description of System Type

string

String length: inclusive between 0 and 50

Inactive

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "SystemId": 1,
  "SystemCode": "sample string 2",
  "Description": "sample string 3",
  "Inactive": true
}

application/xml, text/xml

Sample:
<SystemType 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>
  <SystemCode>sample string 2</SystemCode>
  <SystemId>1</SystemId>
</SystemType>