-
Notifications
You must be signed in to change notification settings - Fork 2
5.2. 친구 투자 현황 조회
YeongWoooo edited this page Jan 1, 2020
·
2 revisions
영우
메소드 | 경로 | 기능 설명 |
---|---|---|
GET | BASEURL/friend/fund/:friend_idx | 친구 투자 현황 조회 |
Content-Type: application/json
token: "token 값"
{
"status": 200,
"success": true,
"message": "친구 투자 상세정보 조회 성공",
"data": {
"proceeding": [
{
"storeIdx": 14,
"storeName": "test",
"remainingDays": 2,
"progressPercent": 10
},
{
"storeIdx": 14,
"storeName": "test",
"remainingDays": 2,
"progressPercent": 10
},
{
"storeIdx": 14,
"storeName": "test",
"remainingDays": 2,
"progressPercent": 10
}
],
"success": [],
"fail": [
{
"storeIdx": 8,
"storeName": "소희네 떡볶이",
"dueDate": "2019-12-30T18:05:38.000Z",
"fundingMoney": 100,
"refundMoney": 100
}
]
}
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러"
}