Sazabi
APIComponents

List status-page issues

GET
/status-incidents

List status-page issues in a project.

Query Parameters

projectId?string

Project to list status-page issues for. Auto-filled from CLI and SDK context when omitted.

Formatuuid
componentId?string

Restrict results to a single component.

Formatuuid
activeOnly?|

When true, return only unresolved (ongoing) issues.

Defaultfalse
limit?integer

Maximum number of issues to return per page.

Range1 <= value <= 100
Default50
cursor?string

Cursor from a previous response's nextCursor to fetch the next page.

Formatuuid

Response Body

application/json

curl -X GET "https://example.com/status-incidents"
{  "incidents": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "componentId": "616ccd92-d666-4180-8349-8d125b269fac",      "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",      "severity": "degraded",      "summary": "string",      "startedAt": "2019-08-24T14:15:22Z",      "resolvedAt": "2019-08-24T14:15:22Z"    }  ],  "nextCursor": "53a4a333-2825-45a4-80d2-5f430d088f36"}