-
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?id={id} | 아이디 중복체크 |
Content-Type: application/json
| Parameter | 설명 | 예시 |
|---|---|---|
| id | 중복 체크할 id | id=bringzzang |
{
"status": 200,
"message": "사용 가능",
"data": null
}{
"status": 400,
"message": "내용 없음",
"data": null
}{
"status": 400,
"message": "사용 불가. ID 중복",
"data": null
}{
"status": 500,
"message": "서버 내부 에러",
"data": null
}