Skip to content

SystemStatusMaintenance

SystemStatusMaintenance outlines a maintenance window for the Werk24 platform. It includes the maintenance name, its current status, and the time it is scheduled for. With this data you can proactively inform customers, plan around downtime, or surface upcoming maintenance in your own tooling. The structure supports integration with calendar systems, automated messaging tools, and internal change management processes so that teams stay coordinated during planned interventions and stakeholders receive consistent updates, even across time zones.

Bases: BaseModel

Scheduled maintenance information.

PARAMETER DESCRIPTION
name

TYPE: str

status

TYPE: str

scheduled_for

TYPE: datetime | None DEFAULT: None

Source code in werk24/models/v2/status.py
class SystemStatusMaintenance(BaseModel):
    """Scheduled maintenance information."""

    name: str
    status: str
    scheduled_for: Optional[datetime] = None