-
Notifications
You must be signed in to change notification settings - Fork 2
2.2. 최대이율 조회
100yeeun edited this page Jan 3, 2020
·
4 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
GET | /funding/:storeIdx | 최대이율 조회 |
Content-Type: application/json
token: "사용자 token 값"
펀딩 성공시
{
"status": 200,
"success": true,
"message": "최대 이율 조회 성공",
"data": {
"refundPercent": 175
}
}
펀딩에 등록되어 있지 않은 가게일 때
{
"status": 600,
"success": false,
"message": "데이터베이스 에러"
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}