Document toolboxDocument toolbox

Threat Class APIs

Threat classes indicate the categories of threat, for example, phishing or spambots.

Get Threat Classes

Gets a list of threat classes.

Request

GET /data/threat_classes

Example:

Request using Curl


curl ‘https://csp.infoblox.com/tide/api/data/threat_classes' -H 'Authorization:Token token=<MYTOKEN>' | python -mjson.tool

Response (with some detail removed for brevity):

{
"threat_class" : [ {
"link" : [ {
"href" : "/data/threat_classes/MalwareDownload",
"rel" : "self"
} ],
"id" : "MalwareDownload",
"name" : "Malware Download"
}, {
"link" : [ {
"href" : "/data/threat_classes/Spambot",
"rel" : "self"
} ],
"id" : "Spambot",
"name" : "Spambot"
}, {
"link" : [ {
"href" : "/data/threat_classes/ExploitKit",
"rel" : "self"
} ],
"id" : "ExploitKit",
"name" : "Exploit Kit"
}, {
...
} ]
}