A Graze API POST request that acknowledges or unacknowledges the owner of the specified alert ID.
Back to Graze API EndPoint Reference.
Endpoint setAlertAcknowledgeState
takes the following request arguments:
Name | Type | Required | Description |
---|---|---|---|
| String | Yes | A valid |
| Number | Yes | ID of the alert that you want to acknowledge or not acknowledge. |
| Number | Yes | The acknowledge state you want to apply to the alert: 0 for unacknowledged, 1 for acknowledged. |
Endpoint setAlertAcknowledgeState
returns the following response:
The behavior of this endpoint depends on whether the relevant alert or Situation is open, closed and still in the active database, or closed and archived to the historic database. This endpoint updates the alert or Situation as follows:
See API Update Behavior for more information on Situation statuses.
The following examples demonstrate typical use of endpoint setAlertAcknowledgeState
:
Example cURL request to set the acknowledge state of alert ID 7 to "acknowledged":
curl -X POST -u graze:graze -k -v "https://localhost/graze/v1/setAlertAcknowledgeState" -H "Content-Type: application/json; charset=UTF-8" -d '{"alert_id" : 7, "acknowledged" : 1 }'