Skip to content

중복확인

황규철 edited this page Mar 31, 2022 · 2 revisions

이메일 중복확인

메소드 경로 설명
GET /auth/signup/check?id={id} 아이디 중복확인

요청 헤더

Content-Type: application/json

응답 바디

SUCCESS : 사용가능한 아이디

{
    "status": 200,
    "success": true,
    "message": "사용가능한 아이디입니다",
}

FAIL : 사용불가능한 아이디

{
    "status": 200,
    "success": false,
    "message": "이미 존재하는 아이디입니다"
}