Skip to content

2.5. 투자 완료된 음식점 조회

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

투자 완료된 음식점 조회

수민

메소드 경로 설명
GET /mypage/fundlist/1 투자 완료된 음식점 조회

Request Header

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

Response Body

Success Response

투자 완료된 음식점 조회 성공(fundStatus = 1)

{
    "status": 200,
    "success": true,
    "message": "투자 완료된 음식점 조회",
    "data": [
        {
            "storeIdx": 12,
            "storeName": "456",
            "dueDate": "2019-12-27T09:05:23.000Z",
            "fundingMoney": 2400,
            "refundMoney": 2400
        }
    ]
}

Fail Response

INTERNAL SERVER ERROR

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