Summary:
List all custom webhook events.
URL:
http(s)://{server hostname}/api/webhooks/events
Methods summary
- GET Method - list all custom webhook events.
GET Method detail
Returns a list of all custom webhook events.
Response:
Name | Description |
---|---|
eventName | name of the custom webhook event. |
eventDescription | description of the event. This is informational only. |
eventID | ID of the event. |
eventSeverity |
severity of the event, select from: 2 - Info 4 - Minor 6 - Major 8 - Severe 10 - Critical |
count |
total number of events. |
Example:
INPUT
curl -u admin:admin https://localhost/api/webhooks/events -H "content-type:application/json"
OUTPUT
{
"items" : [ {
"eventName" : "Meraki Device Came Up",
"eventDescription" : "Test Meraki Device Came Up Event",
"eventID" : 8,
"eventSeverity" : 6
}, {
"eventName" : "Meraki Test Event",
"eventDescription" : "Test Meraki Event Description",
"eventID" : 10,
"eventSeverity" : 10
} ],
"count" : 2
}
Comments
0 comments
Please sign in to leave a comment.