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