GET
/api/logtypesList log types
All registered log types, name ascending. Data source for the rule form's category select.
Responses
200 Log types
totalnumberrequiredlogTypesLogType[]requiredidstringrequiredlogtype _search hit _id — used for DELETE (not the name).
namestringrequireddescriptionstringcategorystringsourcestringSigma (built-in) / Custom
cURL
curl -X GET https://osawebhook.defenderx.sentrixsolution.com/api/logtypesJavaScript
const res = await fetch("https://osawebhook.defenderx.sentrixsolution.com/api/logtypes", {
method: "GET"
});
const data = await res.json();Response 200
{
"total": 0,
"logTypes": [
{
"id": "string",
"name": "string",
"description": "string",
"category": "string",
"source": "string"
}
]
}