Skip to content

2.3. 암호확인 & 투자완료

100yeeun edited this page Jan 3, 2020 · 5 revisions

암호 확인 & 투자 완료

수민

메소드 경로 설명
POST /funding 암호 확인 & 가게에 펀딩

Request Header

Content-Type: application/json
token: "사용자 token 값"

Request Body

{
	"payPassword": "12312312",
	"storeIdx" : 8,
	"fundingMoney" : 2400
}

Response Body

Success Response

펀딩 성공시

{
    "status": 200,
    "success": true,
    "message": "투자에 성공했습니다"
}

Fail Response

패스워드가 맞지 않을 때

{
    "status": 401,
    "success": false,
    "message": "비밀번호가 일치하지 않습니다"
}

펀딩이 끝난 가게일 때

{
    "status": 400,
    "success": false,
    "message": "이미 마감된 펀딩입니다"
}

펀딩에 등록되어 있지 않은 가게일 때

{
    "status": 600,
    "success": false,
    "message": "펀딩에 등록하지 않은 가게입니다"
}

필요한 body 값이 없을 때

{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다."
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally