-
Notifications
You must be signed in to change notification settings - Fork 1
✔ 나의 모임 읽지 않은 채팅
alia edited this page Sep 6, 2020
·
4 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /unread/:roomIdx | 나의모임마다 읽지 않은 채팅 수 |
{
"Content-Type" : "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3QzIiwibmFtZSI6Iu2FjOyKpO2KuCIsImlhdCI6MTU3NzczNTQwNSwiZXhwIjoxNTgwMzI3NDA1LCJpc3MiOiJPdW5jZV9TZXJ2ZXIifQ.V4hcw4bxwICn4p7nz15ToUw63ok-QmbIbWx7gvDMouI"
}
- token : 엑세스 토큰
{
"status": 200,
"success": true,
"message": "읽지 않은 메세지 가져오기 성공",
"data": {
"getCount": 13,
"getUnread": [
{
"nickName": "ㅇㅇ",
"msg": "Dkdk",
"chatTime": "2020-09-06T00:42:27.000Z",
"roomIdx": 1
},
{
"nickName": "ㅇㅇ",
"msg": "아아아아아아아아아아아아아아ㅏㅇ아아아ㅏ",
"chatTime": "2020-09-06T00:42:32.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "111",
"chatTime": "2020-09-06T10:25:05.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "111",
"chatTime": "2020-09-06T10:25:07.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "213123",
"chatTime": "2020-09-06T10:25:34.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "123123123",
"chatTime": "2020-09-06T10:25:37.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "12321313",
"chatTime": "2020-09-06T10:26:43.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "123123123",
"chatTime": "2020-09-06T10:26:44.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "123123123213",
"chatTime": "2020-09-06T10:26:46.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "1111",
"chatTime": "2020-09-06T10:26:48.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "123123",
"chatTime": "2020-09-06T10:26:49.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "12312321",
"chatTime": "2020-09-06T10:27:33.000Z",
"roomIdx": 1
},
{
"nickName": "test1",
"msg": "123123123",
"chatTime": "2020-09-06T10:27:35.000Z",
"roomIdx": 1
}
]
}
}
- nickName : 유저 닉네임
- roomIdx : 모임 인덱스
- msg : 토론 내용
- chatTime : 채팅 보낸 시간
- getCount : 읽지 않은 채팅 수
- 비회원일 경우
{
"status": 400,
"success": false,
"message": "토큰이 존재하지 않습니다"
}
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}