-
Notifications
You must be signed in to change notification settings - Fork 1
현재IOT상태및IOT상태기록
Bohyeon Kim edited this page Mar 9, 2022
·
1 revision
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | safety/:IotNum | 현재IOT상태및IOT상태기록 |
Content-Type: application/json
{
"status": 200,
"success": false,
"message": "해당하는 IoTNum의 데이터가 존재하지 않습니다."
}
{
"status": 200,
"success": true,
"message": "안전 데이터 존재",
"data": [
{
"Temperature": 37.21,
"AlarmVoltage": 0,
"AlarmElectric": 0,
"AlarmLeakage": 0,
"AlarmArc": 0,
"AlarmTemperature": 0
}
]
}