Monitoring

Mark an alert as actioned

PATCH
/api/v1/monitoring/alerts/{alertId}/actioned

Scope: monitoring:write

Records that someone acted on the alert. Distinct from read — an alert can be read without being resolved.

Authorization

AuthorizationBearer <token>

Use Authorization: Bearer vrf_live_... or vrf_test_....

In: header

Path Parameters

alertId*string

Alert identifier.

Formatuuid

Response Body

application/json

curl -X PATCH "https://example.com/api/v1/monitoring/alerts/497f6eca-6276-4993-bfeb-53cbbbba6f08/actioned"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "title": "string",  "message": "string",  "severity": "INFO",  "read": true,  "actioned": true,  "reportId": "836df459-dc40-4aa1-972a-6eb0a864dff9",  "createdAt": "2019-08-24T14:15:22Z"}