-
Notifications
You must be signed in to change notification settings - Fork 3
중복검사(닉네임)
Bomi Kim edited this page Jan 7, 2019
·
3 revisions
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| GET | /users/check?nick={nick} | 닉네임 중복체크 |
Content-Type: application/json
| Parameter | 설명 | 예시 |
|---|---|---|
| nick | 중복 체크할 닉네임 | nick=bring |
{
"status": 200,
"message": "사용 가능",
"data": null
}{
"status": 400,
"message": "내용 없음",
"data": null
}{
"status": 400,
"message": "사용 불가. NICK 중복",
"data": null
}{
"status": 500,
"message": "서버 내부 에러",
"data": null
}