Skip to main content

addAlertCustomInfo

A Graze API POST request that adds and merges custom information for a specified alert.

Back to Graze API EndPoint Reference.

Request arguments

Endpoint addAlertCustomInfo takes the following request arguments:

Name

Type

Required

Description

auth_token

String

Yes

A valid auth_token returned from the authenticate request. Alternatively, basic authenticate headers can be used in place of this parameter. See the authenticate endpoint for more information and usage examples.

alert_id

Number

Yes

Alert ID.

custom_info

JSON object

Yes

A JSON object containing the custom information.

Response

Endpoint addAlertCustomInfo returns the following response:

API update behavior

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.

Examples

The following examples demonstrate typical use of endpoint addAlertCustomInfo:

Request example

Example cURL request to add custom info to "field1", "field2", "field3", and "field4" in alert ID 9:

curl -X POST -u graze:graze -k -v "https://localhost/graze/v1/addAlertCustomInfo" -H "Content-Type: application/json; charset=UTF-8" -d '{"alert_id" : 9, "custom_info" : { "field1" : "value1" , "field2" : "value2" , "field3" : ["item1","item2","item3"] , "field4" : {"field4-1" : "value4-1","field4-2" : "value4-2"} }}'

Response example