Skip to main content
Platform Operations/Platform Self-Monitor
GETPlatformSince 1.0SynchronousAuth Required

ListSelfMonAlerts

List recent self-monitoring alerts ordered by fired time descending.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Query Parameters

Request Inputs

Query Parameters

  • limitInteger

    Maximum number of alert records to return Maximum number of alert records to return

    Example: 0

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of self-monitoring alerts

    Example: (nested array)

    • idString

      Unique identifier of the fired alert

      Example: alert-001-xyz

    • ruleIdString

      ID of the rule that triggered this alert

      Example: rule-selfmon-001

    • ruleNameString

      Name of the rule that triggered this alert

      Example: High Error Rate

    • valueLong

      Observed metric value that triggered the alert

      Example: 0.08

    • thresholdLong

      Threshold that was exceeded

      Example: 0.05

    • severityString

      Severity level of the alert

      Example: warning

    • statusString

      Current status of the alert (firing, resolved)

      Example: firing

    • firedAtString

      Fired at

      Example: 2026-01-15T08:00:00Z

    • resolvedAtString

      Resolved at

      Example: 2026-01-15T08:00:00Z

    • messageString

      Human-readable summary of the alert condition

      Example: Error rate 8% exceeds threshold 5%

  • totalInteger

    Total number of alerts

    Example: 20

  • limitInteger

    Maximum number of items per page

    Example: 50

  • offsetInteger

    Number of items skipped

    Example: 20

Endpoint

GET/api/v1/self-monitor/alerts

/api/v1/self-monitor/alerts

Operation ID

ListSelfMonAlerts

Permalink

Request Example

curl -X GET '{host}/api/v1/self-monitor/alerts' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 20,
  "limit": 50,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history