GET api/systemtype

Returns all System Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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
  },
  {
    "SystemId": 1,
    "SystemCode": "sample string 2",
    "Description": "sample string 3",
    "Inactive": true
  }
]

application/xml, text/xml

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