Skip to content

다이어리 월별 조회

YeongWoooo edited this page Jan 6, 2021 · 2 revisions

다이어리 월별 조회

메소드 경로 설명
GET /diaries 다이어리 월별 조회

스크린샷 2021-01-06 오후 9 41 48

요청 헤더

Content-Type: application/json

요청 쿼리

{
   "order": "date"
   "userId": "1",
   "year": "2020",
   "month": "11"
}

응답 바디

SUCCESS : 다이어리 월별조회 성공

{
    "message": "일기 전체 조회 성공",
    "data": [
        {
            "id": 2823,
            "position": 3,
            "depth": 1,
            "contents": "test_contents_2822",
            "userId": 1,
            "sentenceId": 33,
            "emotionId": 2,
            "wroteAt": "2020-11-27T00:00:00.000Z",
            "createdAt": "2021-01-06T07:50:51.000Z",
            "updatedAt": "2021-01-06T07:50:51.000Z",
            "UserId": 1,
            "SentenceId": 33,
            "EmotionId": 2,
            "Sentence": {
                "id": 33,
                "contents": "test_contents_32",
                "bookName": "test_bookName_32",
                "writer": "test_writer_32",
                "publisher": "test_publisher_32",
                "emotionId": 8,
                "createdAt": "2021-01-06T07:50:51.000Z",
                "updatedAt": "2021-01-06T07:50:51.000Z",
                "EmotionId": 8
            },
            "Emotion": {
                "id": 2,
                "name": "행복",
                "createdAt": "2021-01-06T07:50:51.000Z",
                "updatedAt": "2021-01-06T07:50:51.000Z"
            }
        }
    ]
}

FAIL : 빈값이 있을 경우 (400)

{
    "message": "필요한 값이 없습니다."
}

FAIL : 서버 내부 에러 (500)

{
    "message": "일기 전체 조회 실패"
}