Summary:
Lists incident types.
URL:
http(s)://{server hostname}/api/incidentTypes
Methods summary
- GET Method - lists available incident types.
GET Method detail
Response:
Response includes an array of event types, each of them having the following format:
Name | Description |
---|---|
name |
name of the incident type. |
Examples:
INPUT
curl -u admin:admin https://localhost/api/incidentTypes?media=json
OUTPUT
[ {
"name" : "AP Antenna Channel Change Frequency High"
}, {
...removed for brevity...
}, {
"name" : "Wireless Controller High Number of Connected APs"
} ]
INPUT
curl -u admin:admin https://localhost/api/incidentTypes?media=xml
OUTPUT
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<items count="256">
<item xsi:type="incidentType" name="AP Antenna Channel Change Frequency High" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"/>
...removed for brevity...
<item xsi:type="incidentType" name="Wireless Controller High Number of Connected APs" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"/>
</items>
Comments
0 comments
Please sign in to leave a comment.