-
Notifications
You must be signed in to change notification settings - Fork 1
[User] 최근 활동 가져오기
jujube0 edited this page Jan 12, 2021
·
5 revisions
GET /users/activities
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description | required |
---|---|---|---|
page | Int | 페이지 (default-1) | X |
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String | |
data | Data |
name | type | description |
---|---|---|
page_len | Int | 페이지 총 수 |
activities | Array | Activity, 활동들 리스트 |
name | type | description |
---|---|---|
type | String | comment - 댓글, cocomment-대댓글, follow-팔로우 |
user_id | Int | |
question_title | String | 연관된 질문 내용, follow 타입일 경우 null |
user_nickname | String | |
profile_img | String | |
createdAt | String | 생성 시기 |
answer_id | Int |
{
"status": 200,
"success": true,
"message": "최근 활동 가져오기 성공",
"data": {
"page_len": 1,
"activities": [
{
"type": "comment",
"user_id": 3,
"question_title": "내가 좋아하는 사람들은 어떤 공통점이 있나요? 생각, 말투, 행동 등을 생각해봐요!",
"user_nickname": "iOS",
"profile_img": "https://2020-sopt-27.s3.ap-northeast-2.amazonaws.com/images/origin/1610099463878.jpeg",
"createdAt": "2021-01-12T13:01:59.000Z",
"answer_id": 39
},
{
"type": "follow",
"user_id": 6,
"user_nickname": "new",
"profile_img": "https://2020-sopt-27.s3.ap-northeast-2.amazonaws.com/images/origin/1610462916820.1189087023",
"question_title": null,
"createdAt": "2021-01-11T14:04:16.000Z"
},
{
"type": "follow",
"user_id": 2,
"user_nickname": "iOS1",
"profile_img": "https://2020-sopt-27.s3.ap-northeast-2.amazonaws.com/images/origin/1610099337705.jpeg",
"question_title": null,
"createdAt": "2021-01-09T07:47:50.000Z"
}
]
}
}