GET api/IncidentTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of IncidentType
NameDescriptionTypeAdditional information
id

integer

None.

IncidentTypes

string

None.

AreaId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "IncidentTypes": "sample string 2",
    "AreaId": 1
  },
  {
    "id": 1,
    "IncidentTypes": "sample string 2",
    "AreaId": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfIncidentType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PanicSAAPI.Database">
  <IncidentType>
    <AreaId>1</AreaId>
    <IncidentTypes>sample string 2</IncidentTypes>
    <id>1</id>
  </IncidentType>
  <IncidentType>
    <AreaId>1</AreaId>
    <IncidentTypes>sample string 2</IncidentTypes>
    <id>1</id>
  </IncidentType>
</ArrayOfIncidentType>