HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
♥️
2기 최종 프로젝트 팀별 공간
/
[팀 09] 오프와 에프
[팀 09] 오프와 에프
/
📝
API 명세서
/
📢
요청/응답 값
📢

요청/응답 값

FE 연결
FE 연결
HTTP verbs
GET
Path
/api/v1/places/{place_id}/comments
기능
해당 장소 댓글 전체 조회
담당자
Kid
도메인
완료
완료

GET /api/v1/places/{place_id}/comments


요청 값(헤더)


요청 값(params)


 
페이지네이션이 존재하지 않습니다!
일단 다 출력합니다!

응답 값(200)


{ "id": Long!, "totalCount": Long!, "comments": [ { "id": Long!, "comment": String!, "rootCommentId": Long?, "createdAt": String!, "updatedAt": String!, "isDeleted": Boolean!, "user":{ "id": Number!, "nickName": String!, "profileImage": String?, } }, ... ] }
 

응답 값(204 - noContent)