GET api/IncidentTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of IncidentItems
NameDescriptionTypeAdditional information
INCIDENT_CD

integer

None.

INCIDENT_DESC

string

None.

SORT_ORDER

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "INCIDENT_CD": 1,
    "INCIDENT_DESC": "sample string 2",
    "SORT_ORDER": 3
  },
  {
    "INCIDENT_CD": 1,
    "INCIDENT_DESC": "sample string 2",
    "SORT_ORDER": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfIncidentItems xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
  <IncidentItems>
    <INCIDENT_CD>1</INCIDENT_CD>
    <INCIDENT_DESC>sample string 2</INCIDENT_DESC>
    <SORT_ORDER>3</SORT_ORDER>
  </IncidentItems>
  <IncidentItems>
    <INCIDENT_CD>1</INCIDENT_CD>
    <INCIDENT_DESC>sample string 2</INCIDENT_DESC>
    <SORT_ORDER>3</SORT_ORDER>
  </IncidentItems>
</ArrayOfIncidentItems>