POST
/
v1
/
alerts
/
archive
Archive a threshold notification
curl --request POST \
  --url https://api.metronome.com/v1/alerts/archive \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "8deed800-1b7a-495d-a207-6c52bac54dc9"
}'
{
  "data": {
    "id": "8deed800-1b7a-495d-a207-6c52bac54dc9"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The ID of the threshold notification to archive

id
string<uuid>
required

The Metronome ID of the threshold notification

release_uniqueness_key
boolean

If true, resets the uniqueness key on this threshold notification so it can be re-used

Response

Success

data
object
required