Status Incident

List

Retrieve a paginated list of Status Incident records. Supports filtering, sorting, and search.

get/api/cp/status-incident

Query parameters

status'fixed' | 'watching' | 'identified' | 'investigating'

Filter by Status

visibility'public' | 'private'

Filter by Visibility

Response

Successful response

idinteger

Id

account_idinteger

Account Id (references account.id)

createdstring date-time

Created

updatedstring date-time

Updated

titlestring

Title

descriptionstring

Description

status'fixed' | 'watching' | 'identified' | 'investigating'

Status

visibility'public' | 'private'

Visibility

Example response

[
  {
    "id": 12345,
    "account_id": 1,
    "created": "2025-01-17T10:30:00Z",
    "updated": "2025-01-17T10:30:00Z",
    "title": "Example Name",
    "description": "A detailed description of the resource",
    "status": "fixed",
    "visibility": "public"
  }
]

Changes