Skip to content

[GET] 닉네임 존재 여부

Gyunny edited this page Jun 5, 2021 · 2 revisions
메소드 경로 설명
GET /api/v2/users/nickname-check?nickname=닉네임 닉네임 존재 여부 확인

Request Header

{
    "Content-Type": "application/json"
}

Response

< Success >

  • 존재하는 경우
{
  "status": 200,
  "message": "존재하는 회원입니다.",
  "data": null
}
  • 존재하지 않는 경우
{
  "status": 404,
  "message": "존재하지 않는 회원입니다.",
  "data": null
}

< Fail >

  • 서버 에러
{
  "message": "Server Error",
  "status": 500,
  "errors": [],
  "code": "C004"
}