Skip to content

Get threats associated with an incident

GET
/v1/incidents/{id}/threats
curl --request GET \
--url https://api.adversarial.com/api/v1/incidents/INC-00001/threats
id
required
string

The ID of the incident to retrieve threats for — INC-00001 (case-insensitive) or a bare number

Example
INC-00001

Get the threats

Media typeapplication/json
Array<object>

A threat objective paired with how relevant it is to a risk.

Two relations are considered the same when the objective and its relevance match; created_date records when the relation was last changed and is not part of its identity.

object
created_date

The time that this relation was mutated

string | null format: date-time
relevance
One of:
null
threat_objective
required

The threat objective type

string
Allowed values: Sabotage Data Disclosure Extortion Customer Targeting Resource Hijacking Fraud
Example
[
{
"relevance": "Moderate",
"threat_objective": "Sabotage"
}
]

Incident not found