PUT
/
alert
/
:id
Update alert
curl --request PUT \
  --url http://localhost:8080/alert/:id \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "status": "<string>",
  "message": "<string>",
  "entity_type": "<string>",
  "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "triggered_at": "2023-11-07T05:31:56Z"
}'
{
  "status": "<string>",
  "message": "<string>",
  "entity_type": "<string>",
  "entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "triggered_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact your administrator to get an API key.

Path Parameters

id
string
required

Alert ID

Body

application/json

Response

Successfully updated alert

The response is of type object.