-
Notifications
You must be signed in to change notification settings - Fork 2
2.4. 투자 중인 음식점 조회
100yeeun edited this page Jan 3, 2020
·
3 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/fundlist/0 | 투자 중인 음식점 조회 |
Content-Type: application/json
token: "사용자 token 값"
투자 중인 음식점 조회 성공(fundStatus = 0)
{
"status": 200,
"success": true,
"message": "투자 중인 음식점 조회",
"data": [
{
"storeIdx": 15,
"storeName": "456",
"remainingDays": 28,
"progressPercent": 0
},
{
"storeIdx": 15,
"storeName": "456",
"remainingDays": 28,
"progressPercent": 0
}
]
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}