Skip to content

✔아이디 중복체크

alia edited this page Aug 20, 2020 · 1 revision
메소드 경로 설명
POST /user/checkId 아이디 중복체크

아이디 중복체크

Request Header

{
    "Content-Type": "application/json"
}

Request Body

{
    "id" : "hyo1"
}
  • id : 사용자 아이디

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "사용가능한 아이디 입니다"
}

< Fail >

  • 유저 아이디 중복
{
    "status": 400,
    "success": false,
    "message": "존재하는 유저입니다."
}