Get alert rule history

get/projects/{projectId}/alertRules/{alertRuleId}/history

Retrieves the project history for an alert rule.

Request Samples

Response Samples

1{
2 "items": [
3 {
4 "id": "history-001",
5 "alertRuleId": "alert-123",
6 "projectId": "proj-001",
7 "timestamp": "2024-07-15T10:30:00Z",
8 "action": "created",
9 "changes": {
10 "name": "High Error Rate Alert",
11 "severity": "high"
12 }
13 },
14 {
15 "id": "history-002",
16 "alertRuleId": "alert-123",
17 "projectId": "proj-001",
18 "timestamp": "2024-07-16T14:45:00Z",
19 "action": "updated",
20 "changes": {
21 "value": 0.08,
22 "severity": "critical"
23 }
24 },
25 {
26 "id": "history-003",
27 "alertRuleId": "alert-123",
28 "projectId": "proj-001",
29 "timestamp": "2024-07-17T09:15:00Z",
30 "action": "updated",
31 "changes": {
32 "description": "Alert for critical model performance degradation."
33 }
34 }
35 ]
36}

Path Parameters

projectId
string
true

The ID of a project in the common model repository.

alertRuleId
string
true

The ID of an alert rule.

Responses

StatusMeaningDescription
200OK

The request succeeded.

Schema
400Bad Request

The request was invalid.

Note: This error status code was added with the 2026.07 stable release.

Schema
404Not Found

No project exists at the requested path.

Schema