GET

알림 목록 조회

/rest/notification

시스템 이벤트 알림 목록을 조회합니다. interval 또는 dateTime 기반 필터를 지원합니다.

GET /rest/notification

시스템 이벤트 알림 목록을 조회합니다. interval 또는 dateTime 기반 필터를 지원합니다.

Request

Query Parameters

ParameterTypeRequiredDescription
keystringYesAPI 인증 키
intervalintegerNo조회 범위 (분 단위)
dateTimestringNo기준 시각 (yyyyMMddHHmmss)
limitintegerNo최대 조회 건수

Response

200 OK

{
  "notifications": [
    {
      "id": 1001,
      "type": "WARNING",
      "message": "High CPU usage on node-01",
      "targetName": "node-01",
      "createdAt": "20260227120000"
    }
  ]
}

401 Unauthorized

{
  "error": "Unauthorized",
  "code": "UNAUTHORIZED"
}

Example

curl "https://{{manager-host}}:{{port}}/rest/notification?key=YOUR_API_KEY"