GET 17.0/app/system/codes

Description

Gets a list of System Codes

URI Parameters

None.

None.

None.

A list of System Codes

Collection of SystemCode
Name Description Type Additional information
Type

integer

None.

Code

integer

None.

Description

string

None.

application/json, text/json

Sample:
[
  {
    "type": 1,
    "code": 2,
    "description": "sample string 3"
  },
  {
    "type": 1,
    "code": 2,
    "description": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSystemCode xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SystemCode>
    <Type>1</Type>
    <Code>2</Code>
    <Description>sample string 3</Description>
  </SystemCode>
  <SystemCode>
    <Type>1</Type>
    <Code>2</Code>
    <Description>sample string 3</Description>
  </SystemCode>
</ArrayOfSystemCode>