-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 알림 로그 조회
Gyunny edited this page Jun 16, 2021
·
5 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /api/v2/alarm | 알림 로그 조회 |
{
"status": 200,
"message": "알람 로그 조회 성공입니다",
"data": [
{
"alarmId": 23,
"myUserId": 1,
"friendId": 137,
"title": null,
"message": "팔로 승낙 메세지",
"profileUrl": "urll~~",
"friendStatus": 2,
"alarmStatus": 2,
"createdAt": "2021-06-06 19:20:03"
},
{
"alarmId": 1,
"myUserId": null,
"friendId": null,
"title": "제목1",
"message": "메세지1",
"profileUrl": null,
"friendStatus": 0,
"alarmStatus": 1,
"createdAt": "2021-06-07"
},
{
"alarmId": 2,
"myUserId": null,
"friendId": null,
"title": "제목2",
"message": "메세지2",
"profileUrl": null,
"friendStatus": 0,
"alarmStatus": 1,
"createdAt": "2021-06-10"
}
]
}
-
alarmId: 알람 고유 ID (친구 알람, 전체 알람 각각 고유 ID 가지고 있음)
-
myUserId: 친구 알람일 경우 null 이 아님(말 그대로 자기 UserId)
-
friendId: 친구 알림일 경우 null이 아님(친구 요청한 친구 UserId)
-
title: 알람 제목
-
message: 알람 메세지
-
profileUrl: 친구 알람에서 프로필 이미지
-
friendStatus: 1(친구), 2(요청중), 0(친구 알람 아니고 전체알람 일 때 0)
-
alarmStatus: 1(전체알람), 2(친구 알람)
-
createdAt: 알람 온 시간
-
alarmStatus : 1(전체알람), 2(친구 알람)
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}