-
Notifications
You must be signed in to change notification settings - Fork 1
✔아이디 중복체크
alia edited this page Aug 20, 2020
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
POST | /user/checkId | 아이디 중복체크 |
{
"Content-Type": "application/json"
}
{
"id" : "hyo1"
}
- id : 사용자 아이디
{
"status": 200,
"success": true,
"message": "사용가능한 아이디 입니다"
}
ㅤ
- 유저 아이디 중복
{
"status": 400,
"success": false,
"message": "존재하는 유저입니다."
}