GET api/CaseType

Request Information

URI Parameters

None.

Body Parameters

Collection of ICriterion

None.

Request Formats

application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Casetype
NameDescriptionTypeAdditional information
Districtid

integer

None.

Casetypeid

integer

None.

Description

string

None.

Stuenabled

boolean

None.

Lapenabled

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Districtid": 1,
    "Casetypeid": 2,
    "Description": "sample string 3",
    "Stuenabled": true,
    "Lapenabled": true
  },
  {
    "Districtid": 1,
    "Casetypeid": 2,
    "Description": "sample string 3",
    "Stuenabled": true,
    "Lapenabled": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCasetype xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LAP.BaseObject">
  <Casetype>
    <Casetypeid>2</Casetypeid>
    <Description>sample string 3</Description>
    <Districtid>1</Districtid>
    <Lapenabled>true</Lapenabled>
    <Stuenabled>true</Stuenabled>
  </Casetype>
  <Casetype>
    <Casetypeid>2</Casetypeid>
    <Description>sample string 3</Description>
    <Districtid>1</Districtid>
    <Lapenabled>true</Lapenabled>
    <Stuenabled>true</Stuenabled>
  </Casetype>
</ArrayOfCasetype>