HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel

Path
/posts/{id}
기능
게시글 단건 조회
비고
-
완료
HTTP verbs
GET
도메인
게시판

Request


Response


{ id: string, title: string, author: string, // userId routineId: string, createdAt: string, updatedAt: string, comments: [], likes: [], // userId } { routine { title: emoji: } 댓글 { } }
//변민지 { "data": { "postId": 1, "createdAt" : "2021-11-24 14:19" "updatedAt" : "2021-11-24 14:19" //"likes" : 28 "user" : { "nickname" : "George" "profileImage" : "~~" //있어야 하나요..? } "routine": { "routineId" : 1 "name" : "집 앞 공원 산책하기" "emoji" : "tree" "durationGoalTime" : 3600(1시간) "category" : ["음식", "취미"] "missions" : [ { "id" : 1, "name" : "샤워하기" "durationGoalTime" : 1800, "emoji" : "shower" "color" : "Blue" }, ... ] } "comments": [ { "commentId": 1, "user" : { "userNickname" : "George" "userProfileImage" : "~~" //있어야 하나요..? } "createdAt" : "2021-11-24 14:19" "updatedAt" : "2021-11-24 14:19" "content": "따릉이타고~", //"likes" : 28 }, { "commentId": 2, "userNickname" : "George" "userProfileImage" : "~~" //있어야 하나요..? "createdAt" : "2021-11-24 14:19" "updatedAt" : "2021-11-24 14:19" "content": "따릉이타고~", } ... ] } }