GET api/GetThreatLevels
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ThreatLevelModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SORT_ORDER | integer |
None. |
|
| THREAT_LEVEL | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"SORT_ORDER": 2,
"THREAT_LEVEL": "sample string 3"
},
{
"ID": 1,
"SORT_ORDER": 2,
"THREAT_LEVEL": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfThreatLevelModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.ObjectModels">
<ThreatLevelModel>
<ID>1</ID>
<SORT_ORDER>2</SORT_ORDER>
<THREAT_LEVEL>sample string 3</THREAT_LEVEL>
</ThreatLevelModel>
<ThreatLevelModel>
<ID>1</ID>
<SORT_ORDER>2</SORT_ORDER>
<THREAT_LEVEL>sample string 3</THREAT_LEVEL>
</ThreatLevelModel>
</ArrayOfThreatLevelModel>