Skip to content

[User] 최근 활동 가져오기

jujube0 edited this page Jan 12, 2021 · 5 revisions

최근 활동 가져오기

    GET /users/activities

Request Header

name type description required
token String 토큰 O

Request Query

name type description required
page Int 페이지 (default-1) X

Response

name type description
status Int
success Boolean
message String
data Data

Data

name type description
page_len Int 페이지 총 수
activities Array Activity, 활동들 리스트

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

Sample

{
    "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"
            }
        ]
    }
}
Clone this wiki locally