We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
상품 및 카테고리 관련 API를 개발합니다.
GET /products
GET /products/{id}
POST /products
PUT /products/{id}
DELETE /products/{id}
GET /�categories/active
GET /�categories
GET /{id}/�sub-categories
POST /�categories
PATCH /�categories/{id}
PATCH /categories/{id}/activate
PATCH /categories/{id}/deactivate
The text was updated successfully, but these errors were encountered:
Feat: 전체 상품 목록 조회, 상품 상세 조회 API 추가 #5
b76edd1
Feat: 상품 목록 조회, 상품 상세 조회 API 추가 #5
3744694
mjeongriver
Successfully merging a pull request may close this issue.
기능 개요
상품 및 카테고리 관련 API를 개발합니다.
기능 목록
사용자 + 관리자 공통 API (상품)
GET /products
→ 상품 목록 조회GET /products/{id}
→ 상품 상세 조회관리자 전용 API (상품)
POST /products
→ 상품 등록PUT /products/{id}
→ 상품 수정DELETE /products/{id}
→ 상품 삭제사용자 + 관리자 공통 API (카테고리)
GET /�categories/active
→ 활성화된 카테고리 목록 조회관리자 전용 API (카테고리)
GET /�categories
→ 모든 카테고리 목록 조회GET /{id}/�sub-categories
→ 세부 카테고리 조회POST /�categories
→ 카테고리 등록PATCH /�categories/{id}
→ 카테고리 수정PATCH /categories/{id}/activate
→ 카테고리 활성화PATCH /categories/{id}/deactivate
→ 카테고리 비활성화The text was updated successfully, but these errors were encountered: