v57

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-012143051018.3 KB
Health Report

Retrieve all Machine health reports

Get all health reports for a specific Machine.

For Infrastructure Providers: Org must have an Infrastructure Provider entity and own the Site that the Machine belongs to. User must have authorization role with PROVIDER_ADMIN or PROVIDER_VIEWER suffix.

For Tenants: Org must have a Tenant with TargetedInstanceCreation capability enabled and Tenant Account with Machine's Provider. User must have authorization role with TENANT_ADMIN suffix.

get/v2/org/{org}/nico/machine/{machineId}/health-report

Response

OK

sourcestring required

Health report source.

triggeredBystring

Person or system that triggered this health report.

observedAtstring date-time

Date/time when the health report was observed.

mode'Merge' | 'Replace' required

How this health report was updated

Example response

[
  {
    "source": "maintenance.dpu-reprovision",
    "triggeredBy": "operator",
    "observedAt": "2026-06-24T12:00:00Z",
    "mode": "Merge",
    "alerts": [
      {
        "id": "HostUpdateInProgress",
        "message": "DPU reprovisioning in progress",
        "classifications": [
          "PreventAllocations"
        ]
      }
    ]
  }
]