/api/detectorsList detectors
Security Analytics detectors with a per-trigger summary (which channels each trigger notifies, whether it's wired to osawebhook, enabled state). A channel alone does not fire the webhook — a detector trigger must be wired to it and the detector enabled.
Responses
totalnumberrequireddetectorsDetectorSummary[]requiredidstringrequirednamestringrequireddetectorTypestringwindows / network / cloudtrail / …
enabledbooleanrequirednotifiesOsabooleanrequiredtriggersobject[]requiredidstringrequirednamestringseveritystring"1".."5" (1 = highest)
destinationIdsstring[]requiredNotification channel ids this trigger's actions send to.
curl -X GET https://osawebhook.defenderx.sentrixsolution.com/api/detectorsconst res = await fetch("https://osawebhook.defenderx.sentrixsolution.com/api/detectors", {
method: "GET"
});
const data = await res.json();{
"total": 0,
"detectors": [
{
"id": "string",
"name": "string",
"detectorType": "string",
"enabled": true,
"notifiesOsa": true,
"triggers": [
{
"id": "string",
"name": "string",
"severity": "string",
"destinationIds": [
"string"
]
}
]
}
]
}