Skip to content

3.1. 가게 상세 정보 조회

Sohee Lee edited this page Jan 3, 2020 · 3 revisions

가게 상세 정보 조회

소희

메소드 경로 기능 설명
GET BASEURL/storeInfo/:storeIdx 가게 정보 조회

Request Header

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

Response

가게 정보 조회 성공

{
    "status": 200,
    "success": true,
    "message": "가게 정보 조회 성공",
    "data": {
        "store_idx": 14,
        "name": "test",
        "business_hours": "456",
        "breaktime": "456",
        "holiday": "456",
        "thumbnail": "456",
        "address": "456",
        "menu": [
            {
                "menu_name": "국빱",
                "menu_price": "7000"
            },
            {
                "menu_name": "국빠빠ㅃ",
                "menu_price": "5000"
            },
            {
                "menu_name": "국밥쓰",
                "menu_price": "2000"
            }
        ],
        "goal_sales": 200000,
        "current_goal_percent": 10,
        "refund_percent": 200,
        "refund_percent_of_percent": 61,
        "left_day": 2,
        "fund_status": 0,
        "due_date": "2020-01-04 18:05",
        "funding": {
            "funding_idx": 106,
            "user_idx": 29,
            "store_idx": 14,
            "funding_money": 13000,
            "refund_percent": 200,
            "reward_money": 26000,
            "profit_money": 13000,
            "funding_time": "2020-01-01T13:52:51.000Z",
            "is_withdraw": 0,
            "user_name": "문명주"
        }
    }
}

존재하지 않는 인덱스 값

{
    "status" : 400,
    "message" : "존재하지 않는 인덱스 값",
    "data" : null
}

INTERNAL SERVER ERROR

{
    "status" : 500,
    "message" : "서버 내부 에러",
    "data" : null
}
Clone this wiki locally