HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
[팀12] 기부니🧡
[팀12] 기부니🧡
/
🧡
API 설계
/
📢
요청/응답 값
📢

요청/응답 값

HTTP verbs
GET
Path
/donations/{id}
기능
기부글 단일 상세조회
담당자
부희
도메인
완료
완료

GET /donations/{id} → 모든 사용자 접근가능


id ⇒ 기부글 상세조회를 원하는 게시글 식별자 아이디 값
 

응답 값


{ "message": "success", "data": { "id": 1, "title": "물품 기부", "content": "기부할래요", "category": "물품나눔", "quality": "보통", "status": "기부진행", "userId": 1, "userName": "기부니", "userImage": "test.jpg", "userCnt": 1, "boardType": "DONATION", "createdDate": "2021-12-13T18:48:40.751604", "updatedDate": "2021-12-13T18:48:40.751604", "tags": [ "아동 · 청소년", "어르신" ], "images": [ "https://needit-image.s3.ap-northeast-2.amazonaws.com/donation/rabbit.png-20212613232648", "https://needit-image.s3.ap-northeast-2.amazonaws.com/donation/mask.png-20212613232648" ], "comments": [ { "id": 1, "comment": "기부희망", "userId": 1, "userName": "테스트 센터", "userImage": "updated url", "createdDate": "2021-12-14T00:24:21.238054", "updatedDate": "2021-12-14T00:24:21.238054" } ] } }