-
Notifications
You must be signed in to change notification settings - Fork 2
4.5. 펀딩 정보 수정
Sohee Lee edited this page Jan 2, 2020
·
2 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
PUT | /storefund/:storeIdx | 펀딩 정보 수정 |
Content-Type: application/json
token: "token 값"
{
"customerCount" : 25,
"marginPercent" : 125,
"goalSales" : 200000
}
펀딩 정보 수정 성공
{
"status": 200,
"success": true,
"message": "펀딩 정보 수정 성공"
}
필요한 Body값이 없을 때
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
존재하지 않는 펀딩일 때
{
"status": 400,
"success": false,
"message": "존재하지 않는 가게 펀드 정보(잘못된 인덱스)"
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}