-
Notifications
You must be signed in to change notification settings - Fork 2
3.6. 가게 검색
100yeeun edited this page Jan 3, 2020
·
7 revisions
예은
메소드 | 경로 | 기능 설명 |
---|---|---|
GET | BASEURL/storeFund/search?keyword=검색어 | 가게 검색 |
Content-Type: application/json
token: "개인 access token 값"
{
"keyword": "소희"
}
- Status: 200 (OK)
{
"status": 200,
"success": true,
"message": "검색 조회 성공",
"data": [
{
"name": "소희네 떡볶이",
"thumbnail": "https://img-cf.kurly.com/shop/data/goodsview/20180913/gv20000032021_1.jpg",
"storefund_idx": 28,
"store_idx": 8,
"margin_percent": 0.3,
"register_time": "2019-12-27 03:12:00",
"due_date": "2019-12-31 03:12:00",
"regular_money": 60000,
"goal_money": 140000,
"current_sales": 120000,
"contributer_count": 4,
"fund_status": 3,
"currentGaolPercent": 85
}
]
}
검색어 없을 때
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
INTERNAL SERVER ERROR
{
"status" : 500,
"message" : "서버 내부 에러",
"data" : null
}
DB 에러
{
"status" : 600,
"message" : "데이터베이스 에러",
"data" : null
}