Skip to content

현재IOT상태및IOT상태기록

Bohyeon Kim edited this page Mar 9, 2022 · 1 revision
메소드 경로 짧은 설명
GET safety/:IotNum 현재IOT상태및IOT상태기록

요청 헤더

Content-Type: application/json

응답 바디

IotNum이 존재하지 않음

{
    "status": 200,
    "success": false,
    "message": "해당하는 IoTNum의 데이터가 존재하지 않습니다."
}

IotNum이 존재함.

{
    "status": 200,
    "success": true,
    "message": "안전 데이터 존재",
    "data": [
        {
            "Temperature": 37.21,
            "AlarmVoltage": 0,
            "AlarmElectric": 0,
            "AlarmLeakage": 0,
            "AlarmArc": 0,
            "AlarmTemperature": 0
        }
    ]
}