Skip to content

2.4. 투자 중인 음식점 조회

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

투자 중인 음식점 조회

수민

메소드 경로 설명
GET /mypage/fundlist/0 투자 중인 음식점 조회

Request Header

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

Response Body

Success Response

투자 중인 음식점 조회 성공(fundStatus = 0)

{
    "status": 200,
    "success": true,
    "message": "투자 중인 음식점 조회",
    "data": [
        {
            "storeIdx": 15,
            "storeName": "456",
            "remainingDays": 28,
            "progressPercent": 0
        },
        {
            "storeIdx": 15,
            "storeName": "456",
            "remainingDays": 28,
            "progressPercent": 0
        }
    ]
}

Fail Response

INTERNAL SERVER ERROR

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