-
Notifications
You must be signed in to change notification settings - Fork 0
유저 알람 목록보기
suzzang edited this page Jul 8, 2019
·
3 revisions
최수정
Method | URL | Description |
---|---|---|
GET | /user/alarm/list/:lastIndex | 유저 알람 목록보기 |
-
요청 헤더
Content-Type : application/json authorization
-
파라미터
lastIndex : 첫 요청(-1), 다음 요청(마지막 데이터의 alarm_idx)
-
응답 성공
// status : 200 "message": "Success", "data": [ { "alarm_idx": 10, "alarm_target_idx": 16, "alarm_date_time": "2019-07-08T13:47:52.000Z", "alarm_message": "리뷰에 댓글이 달렸습니다. : 오호 저두 궁금하네여", "goods_review_idx": 28 } ]
-
응답 실패
// status : 401 { "message": "jwt must be provided" }
```javascript
// status : 401
{
"message": "jwt expired"
}