Skip to content

전력예측

soyeonnn edited this page Feb 28, 2022 · 3 revisions
메소드 경로 짧은 설명
GET predict/predictThisMonth 이번달 예상 전력량 제공

요청 헤더

Content-Type: application/json

요청 바디

{
    "IotNum": 1227564000
}

응답 바디

IotNum이 존재하지 않음

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

IotNum이 존재함. 예측 전력량 제공

{
    "status": 200,
    "success": true,
    "message": "예측 전력량",
    "data": 1935.7142857142858
}