-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 닉네임 존재 여부
Gyunny edited this page Jun 5, 2021
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /api/v2/users/nickname-check?nickname=닉네임 | 닉네임 존재 여부 확인 |
{
"Content-Type": "application/json"
}
- 존재하는 경우
{
"status": 200,
"message": "존재하는 회원입니다.",
"data": null
}
- 존재하지 않는 경우
{
"status": 404,
"message": "존재하지 않는 회원입니다.",
"data": null
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}