Skip to content

6.2. 전체 알림 조회

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

전체 알림 조회

소희

메소드 경로 기능 설명
GET BASEURL/notification/all 전체 알림 조회

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"
        },
        {
            "notification_idx": 2,
            "user_idx": 12,
            "store_idx": 6,
            "date": "2019-12-30T06:20:00.000Z"
        }
    ]
}

INTERNAL SERVER ERROR

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