유저의 작성한 게시글 목록, 댓글 단 게시글 목록, 작성한 모임글 목록의 갯수를 반환합니다.
엔드 포인트 (Endpoint)
•
Method: GET
•
URL: /user/stats/{userToken}
요청 파라미터 (Request Parameters)
Parameter | Type | Required | Description |
userToken | String | Yes | 유저 고유 식별 토큰 |
헤더 정보 (Headers)
Header | Description |
Authorization | Bearer {token} |
Content-Type | application/json |
요청 예시 (Request Example)
•
요청
GET /user/stats/{userToken}
Content-Type: application/json
Authorization: Bearer {token}
Plain Text
복사
응답 (Response)
•
HTTP Status Codes:
◦
200 OK: 유저 활동 통계 조회 성공.
◦
404 Not Found: 유저 정보를 찾을 수 없음.
•
응답 예시
HTTP/1.1 200 OK
{
"postCount": 15,
"commentCount": 25,
"gatheringCount": 3
}
JSON
복사
•
오류 발생
{
"code": "USER_NOT_FOUND",
"message": "해당 유저를 찾을 수 없습니다.",
"status": 404
}
JSON
복사