Skip to content

Iot번호중복

Bohyeon Kim edited this page Feb 28, 2022 · 1 revision
메소드 경로 짧은 설명
POST auth/checkIot Iot번호 중복 확인

요청 헤더

Content-Type: application/json

요청 바디

{
    "Iotnum": "1234"
}

응답 바디

중복되는Iot 존재하지 않음

{
    "status": 200,
    "success": true,
    "message": "중복되는 Iot num이 없습니다."
}

중복되는 Iot 존재

{
    "status": 200,
    "success": false,
    "message": "중복되는 Iot num이 있습니다."
}