Skip to content

2.2. 최대이율 조회

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

최대이율 조회

수민

메소드 경로 설명
GET /funding/:storeIdx 최대이율 조회

Request Header

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

Response Body

Success Response

펀딩 성공시

{
    "status": 200,
    "success": true,
    "message": "최대 이율 조회 성공",
    "data": {
        "refundPercent": 175
    }
}

Fail Response

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

{
    "status": 600,
    "success": false,
    "message": "데이터베이스 에러"
}

INTERNAL SERVER ERROR

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