Skip to content

6.1. 유저 알림 조회

Sohee Lee edited this page Jan 2, 2020 · 6 revisions

유저 알림 조회

소희

메소드 경로 기능 설명
GET BASEURL/notification 유저 알림 조회

Request Header

Content-Type: application/json
token: "token 값"

Response

알림 조회 성공

{
    "status": 200,
    "success": true,
    "message": "알림 조회 성공",
    "data": [
        {
            "notification_idx": 1,
            "user_idx": 12,
            "store_idx": 8,
            "date": "2019-12-30T06:20:00.000Z",
            "store_info": {
                "store_idx": 8,
                "name": "소희네 떡볶이",
                "business_hours": "456",
                "breaktime": "456",
                "holiday": "456",
                "thumbnail": "https://img-cf.kurly.com/shop/data/goodsview/20180913/gv20000032021_1.jpg",
                "address": "456",
                "menu": [
                    {
                        "menu_name": "국빱",
                        "menu_price": "7000"
                    },
                    {
                        "menu_name": "국빠빠ㅃ",
                        "menu_price": "5000"
                    },
                    {
                        "menu_name": "국밥쓰",
                        "menu_price": "2000"
                    }
                ],
                "goal_sales": 140000,
                "current_goal_percent": 85,
                "refund_percent": 175,
                "refund_percent_of_percent": 81,
                "left_day": 0,
                "due_date": "2019-12-31 03:05",
                "fund_status": 3
            }
        },
        {
            "notification_idx": 2,
            "user_idx": 12,
            "store_idx": 6,
            "date": "2019-12-30T06:20:00.000Z",
            "store_info": {
                "store_idx": 6,
                "name": "456",
                "business_hours": "456",
                "breaktime": "456",
                "holiday": "456",
                "thumbnail": "456",
                "address": "456",
                "menu": [],
                "goal_sales": 1200,
                "current_goal_percent": 50,
                "refund_percent": 150,
                "refund_percent_of_percent": -585,
                "left_day": 27,
                "due_date": "2020-01-26 23:23",
                "fund_status": 3
            }
        }
    ]
}

존재하지 않는 인덱스 값

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

INTERNAL SERVER ERROR

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