회원가입 - YeongSeoYeonGeun/UOrders_Server GitHub Wiki

회원가입

메소드 경로 설명
POST /owner/signup 회원가입

요청 헤더

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

요청 바디

{
    "userID": "testid12",
    "userPW": "testpw34"
}

응답 성공

{
    "status": 200,
    "message": "회원가입 성공",
    "data": {
        
        }
    }
}

응답 실패

데이터 누락

{
    "status": 400,
    "message": "입력되지 않은 값이 있습니다"
}

아이디 중복

{
    "status": 400,
    "message": "이미 사용중인 아이디입니다"
}
{
    "status": 400,
    "message": "INTERNAL_SERVER_ERROR"
}