Skip to content

[GET] 독서 일기장 목록 전체 조회

Gyunny edited this page Sep 21, 2021 · 3 revisions
메소드 경로 설명
GET /diary 독서 일기장 전체 조회

스크린샷 2021-08-02 오후 12 58 43

Request Header

{
    "Content-Type": "application/json",
    "accessToken" : "발급받은 JWT TOKEN"
}

Response

< Success >

{
    "status": 200,
    "data": {
        "diaries": [
            {
                "diaryId": 1,
                "diaryTitle": "다이어리 제목1",
                "createdAt": "2021-07-14",
                "bookTitle": "책 제목",
                "bookAuthor": "책 저자",
                "bookImage": "image url"
            },
            {
                "diaryId": 2,
                "diaryTitle": "다이어리 제목2",
                "createdAt": "2021-07-14",
                "bookTitle": "책 제목",
                "bookAuthor": "책 저자",
                "bookImage": "image url"
            },
            {
                "diaryId": 3,
                "diaryTitle": "다이어리 제목3",
                "createdAt": "2021-07-14",
                "bookTitle": "책 제목",
                "bookAuthor": "책 저자",
                "bookImage": "image url"
            }
        ]
    }
}