-
Notifications
You must be signed in to change notification settings - Fork 1
[GET] 닉네임 중복체크
Gyunny edited this page Dec 14, 2020
·
1 revision
메소드 | 경로 | 설명 |
---|---|---|
GET | /users/check/:nickName | 닉네임 중복체크 |
{
"Content-Type": "application/json"
}
{
"status": 200,
"message": "가능한 닉네임 입니다."
}
- 데이터 누락
{
"status": 400,
"message": "필요한 값이 없습니다"
}
- 닉네임 중복
{
"status": 400,
"message": "닉네임이 존재합니다"
}
- 서버 에러
{
"status": 500,
"message": "서버 내부 에러입니다"
}