GET api/StaffLevel2

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of StaffLevel2
NameDescriptionTypeAdditional information
LEVEL_ID

integer

None.

DESCRIPTION

string

None.

OLD

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LEVEL_ID": 1,
    "DESCRIPTION": "sample string 2",
    "OLD": 1
  },
  {
    "LEVEL_ID": 1,
    "DESCRIPTION": "sample string 2",
    "OLD": 1
  }
]

application/octet-stream

Sample:
[{"LEVEL_ID":1,"DESCRIPTION":"sample string 2","OLD":1},{"LEVEL_ID":1,"DESCRIPTION":"sample string 2","OLD":1}]

application/xml, text/xml

Sample:
<ArrayOfStaffLevel2 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <StaffLevel2>
    <LEVEL_ID>1</LEVEL_ID>
    <DESCRIPTION>sample string 2</DESCRIPTION>
    <OLD>1</OLD>
  </StaffLevel2>
  <StaffLevel2>
    <LEVEL_ID>1</LEVEL_ID>
    <DESCRIPTION>sample string 2</DESCRIPTION>
    <OLD>1</OLD>
  </StaffLevel2>
</ArrayOfStaffLevel2>