GET api/GetThreatResponse?tlid={tlid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tlid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ThreatLevelResponseModel
NameDescriptionTypeAdditional information
ID

integer

None.

TLID

integer

None.

SORT_ORDER

integer

None.

RESPONSE

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "TLID": 2,
    "SORT_ORDER": 3,
    "RESPONSE": "sample string 4"
  },
  {
    "ID": 1,
    "TLID": 2,
    "SORT_ORDER": 3,
    "RESPONSE": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfThreatLevelResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.ObjectModels">
  <ThreatLevelResponseModel>
    <ID>1</ID>
    <RESPONSE>sample string 4</RESPONSE>
    <SORT_ORDER>3</SORT_ORDER>
    <TLID>2</TLID>
  </ThreatLevelResponseModel>
  <ThreatLevelResponseModel>
    <ID>1</ID>
    <RESPONSE>sample string 4</RESPONSE>
    <SORT_ORDER>3</SORT_ORDER>
    <TLID>2</TLID>
  </ThreatLevelResponseModel>
</ArrayOfThreatLevelResponseModel>