Skip to content

SystemStatusComponent

SystemStatusComponent represents the health of an individual Werk24 service component. The model reports the component identifier, its name, the current operational status, and a timestamp for when the status was last updated. Use this object to monitor platform availability, integrate status dashboards, or trigger alerts when a specific subsystem experiences degraded performance. By inspecting the per-component statuses within a SystemStatus snapshot, you can communicate precise status updates to stakeholders and drive automated rerouting or graceful degradation strategies when issues arise.

Bases: BaseModel

Status information for a specific API component.

PARAMETER DESCRIPTION
id

TYPE: str

name

TYPE: str

status

TYPE: str

updated_at

TYPE: datetime | None DEFAULT: None

Source code in werk24/models/v2/status.py
class SystemStatusComponent(BaseModel):
    """Status information for a specific API component."""

    id: str
    name: str
    status: str
    updated_at: Optional[datetime] = None