Skip to content

List prioritized attention items for the dashboard: unresolved incidents, down monitors, expiring TLS certificates and domains, and monitors trending slow.

GET
/monitors/attention
curl --request GET \
--url https://api.siteqwality.com/monitors/attention \
--header 'Authorization: Bearer <token>'

Prioritized attention items

Media type application/json

Response for GET /monitors/attention. items is capped; total_count reports how many qualified before the cap.

object
items
required
Array<object>

A single actionable item on the dashboard “Needs Attention” list.

object
type
required

Discriminates the kinds of items the dashboard “Needs Attention” list can surface, in priority order (incidents first, slow monitors last).

string
Allowed values: incident recent_failure ssl_expiry domain_expiry slow_monitor
title
required

One-line human-readable description rendered verbatim by the UI.

string
severity

Incident severity (minor / major / critical); incidents only.

string | null
monitor_id

The monitor this item points at, when it concerns a single monitor.

string | null format: uuid
monitor_name

Display name for the affected monitor or domain.

string | null
incident_id

The incident this item points at; incidents only.

string | null format: uuid
created_at
required

Reference instant for the item: when the incident started, when the monitor went down, or when the cert/domain expires.

string format: date-time
link
required

SPA-relative link to the detail page for this item.

string
total_count
required
integer
Example
{
"items": [
{
"type": "incident"
}
]
}

Missing or invalid authentication

Internal server error