-
Notifications
You must be signed in to change notification settings - Fork 2
2.5. 투자 완료된 음식점 조회
100yeeun edited this page Jan 3, 2020
·
3 revisions
수민
메소드 | 경로 | 설명 |
---|---|---|
GET | /mypage/fundlist/1 | 투자 완료된 음식점 조회 |
Content-Type: application/json
token: "사용자 token 값"
투자 완료된 음식점 조회 성공(fundStatus = 1)
{
"status": 200,
"success": true,
"message": "투자 완료된 음식점 조회",
"data": [
{
"storeIdx": 12,
"storeName": "456",
"dueDate": "2019-12-27T09:05:23.000Z",
"fundingMoney": 2400,
"refundMoney": 2400
}
]
}
INTERNAL SERVER ERROR
{
"status": 500,
"success": false,
"message": "서버 내부 오류"
}