현재 구현된 API 경로와 실제 API 명세서를 비교하여 수정이 필요합니다.
POST /api/v1/auth/loginPOST /api/v1/auth/logoutPOST /api/v1/auth/signup
GET /api/v1/membersGET /api/v1/members/:idGET /api/v1/members/mePUT /api/v1/members/mePUT /api/v1/members/:idDELETE /api/v1/members/:idPUT /api/v1/members/:id/banPUT /api/v1/members/:id/unban
GET /api/v1/postsGET /api/v1/posts/:idPOST /api/v1/postsPUT /api/v1/posts/:idDELETE /api/v1/posts/:idGET /api/v1/posts/meGET /api/v1/posts/category/:categoryIdGET /api/v1/posts/region/:regionId
GET /api/v1/posts/favoritesPOST /api/v1/posts/:postId/favoritesDELETE /api/v1/posts/:postId/favoritesGET /api/v1/posts/:postId/favorites/check
GET /api/v1/reservationsGET /api/v1/reservations/:idPOST /api/v1/reservationsPUT /api/v1/reservations/:idDELETE /api/v1/reservations/:idGET /api/v1/reservations/meGET /api/v1/posts/:postId/reservationsPUT /api/v1/reservations/:id/approvePUT /api/v1/reservations/:id/rejectPUT /api/v1/reservations/:id/cancel
GET /api/v1/reviewsGET /api/v1/reviews/:idPOST /api/v1/reviewsPUT /api/v1/reviews/:idDELETE /api/v1/reviews/:idGET /api/v1/posts/:postId/reviewsGET /api/v1/reservations/:reservationId/review
GET /api/v1/chat/roomsGET /api/v1/chat/rooms/:idPOST /api/v1/posts/:postId/chat/roomsDELETE /api/v1/chat/rooms/:idGET /api/v1/chat/rooms/:roomId/messagesPOST /api/v1/chat/rooms/:roomId/messagesDELETE /api/v1/chat/rooms/:roomId/messages/:messageIdPUT /api/v1/chat/rooms/:roomId/read
GET /api/v1/categoriesGET /api/v1/categories/:idGET /api/v1/categories/treePOST /api/v1/categoriesPUT /api/v1/categories/:idDELETE /api/v1/categories/:id
GET /api/v1/regionsGET /api/v1/regions/:idGET /api/v1/regions/treePOST /api/v1/regionsPUT /api/v1/regions/:idDELETE /api/v1/regions/:id
GET /api/v1/notificationsGET /api/v1/notifications/:idPUT /api/v1/notifications/:id/readPUT /api/v1/notifications/read-allDELETE /api/v1/notifications/:idGET /api/v1/notifications/unread/count
GET /api/v1/reportsGET /api/v1/reports/:idPOST /api/v1/reportsDELETE /api/v1/reports/:idGET /api/v1/reports/me
POST /api/v1/uploadPOST /api/v1/upload/multiplePOST /api/v1/upload/profile
실제 API 명세서와 비교하여 다음을 확인해주세요:
- 리소스 이름이 다른가요? (예:
membersvsusers) - 특정 엔드포인트 경로가 다른가요?
- 중첩 경로 구조가 다른가요?
- 추가/누락된 엔드포인트가 있나요?
명세서의 실제 경로를 알려주시면 바로 수정하겠습니다!