GET /events/acknowledgeAlerts
Use this method to return a list of active alerts that were acknowledged.
When an active alert is acknowledged, the alert is still included in view but is no longer included in the severity status for a device.
Note
This API requires Lenovo XClarity Administrator v3.0.0 or later.
Authentication
Authentication with username and password is required.
Request URL
GET https://{management_server_IP}/events/acknowledgeAlerts
Query parameters
None
Request body
None
Response codes
Code | Description | Comments |
---|---|---|
200 | OK | The request completed successfully. |
500 | Internal Server Error | An internal error occurred. A descriptive error message is returned in the response body. |
Response body
Parameters | Type | Description | ||
---|---|---|---|---|
componentID | String | ID of the component that raised the alert | ||
date | String | Time and date that the event was raised on source device. This is the time and date from the managed device and might be different from timestamp when the alert was processed by the Lenovo XClarity Administrator. This timestamp is specified using ISO-8601 format (for example, 2019-05-02T19:28:14.000Z). For information about ISO-8601 format, see the W3C Date and Time Formats webpage. | ||
eventID | String | Event ID of the event that is associated with the alert | ||
sourceID | String | ID of the source that raised the alert |
The following example is returned if the request is successful.
[{
"componentID": "3015DE7E2B6011E881940A94EF5F5B65",
"date": "2019-07-08T16:19:10Z",
"eventID": "FQXHMDM0163J",
"sourceID": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
...,
{
"componentID": "3015DE7E2B6011E881940A94EF5AC567",
"date": "2019-07-08T16:19:10Z",
"eventID": "FQXHMDM0163J",
"sourceID": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
}]
Give documentation feedback