Skip to content
HanaH edited this page Mar 25, 2025 · 5 revisions

📥메세지(Message API)

Method Endpoint Description
POST /interal/messages 내부 메세지 생성
GET /internal/messages 내부 메세지 조회

🚢배송 (Delivery API)

Method Endpoint Description
GET /api/deliveries 배송 검색
GET /api/deliveries/{deliveryId} 배송 단건 조회
POST /api/deliveries 배송 생성
PATCH /api/deliveries/{deliveryId} 배송 수정
DELETE /api/deliveries/{deliveryId} 배송 삭제
PATCH /api/deliveries/{deliveryId}/route/{deliveryRouteId} 배송 경로 수정
POST /internal/deliveries 내부 배송 생성
PATCH /internal/deliveries/{deliveryId} 내부 배송 조회

🤸배송담당자 (DeliveryManager API)

Method Endpoint Description
GET /api/delivery-managers 배송 담당자 검색
GET /api/delivery-managers/{deliveryManagersId} 배송 담당자 단건 조회
POST /api/delivery-managers 배송 담당자 생성
PATCH /api/delivery-managers/{deliveryManagerId} 배송 담당자 수정
DELETE /api/delivery-managers/{deliveryManagerId} 배송 담당자 삭제
GET /internal/delivery-managers/{deliveryManagersId} 내부 배송 담당자 조회

🎁상품 (Product API)

Method Endpoint Description
GET /api/products 상품 검색
GET /api/products/{productId} 상품 단건 조회
POST /api/products 상품 생성
PATCH /api/products/{productId} 상품 수정
DELETE /api/products/{productId} 상품 삭제
GET /internal/products 내부 상품 조회
PATCH /internal/products/stocks 내부 상품 재고 수정
PATCH /internal/products/hub 내부 상품 허브 수정
DELETE /internal/products 내부 상품 삭제

🏢업체 (Company API)

Method Endpoint Description
GET /api/companies 업체 검색
GET /api/companies/{companyId} 업체 단건 조회
POST /api/companies 업체 생성
PATCH /api/companies/{companyId} 업체 수정
DELETE /api/companies/{companyId} 업체 삭제
GET /internal/companies/{companyId} 내부 업체 조회(업체 아이디 기준)
GET /internal/companies/managers/{companyManagerId} 내부 업체 조회(업체 매니저 아이디 기준)

🛒주문 (Order API)

Method Endpoint Description
GET /api/orders 주문 검색
GET /api/orders/{orderId} 주문 단건 조회
POST /api/orders 주문 생성
PATCH /api/orders/{orderId}/cancel 주문 취소
DELETE /api/orders/{orderId} 주문 삭제
GET /internal/orders/{orderId} 내부 주문 조회
PATCH /internal/orders/{orderId}/confirm 내부 주문 확정
PATCH /internal/orders/{orderId}/status 내부 주문 상태 수정

🏗️허브 (Hub API)

Method Endpoint Description
POST /api/hubs 허브 생성
GET /api/hubs/{hubId} 허브 단건 조회
GET /api/hubs 허브 검색
PATCH /api/hubs/{hubId} 허브 수정
DELETE /api/hubs/{hubId} 허브 삭제
GET /internal/hubs/paths 허브 경로 조회
GET /internal/hubs
GET /internal/hubs Yes

👪회원 (Member API)

Method Endpoint Description
GET /api/users 회원 검색
PATCH /api/users/{userId}/password 회원 비밀번호 수정
PATCH /api/users/{userId}/slack-id 회원 슬랙 아이디 수정
PATCH /interal/users/{userId}/role 회원 권한 수정
DELETE /api/users/{userId} 회원 삭제
GET /interal/users/{userId} 내부 회원 조회
GET /interal/users/{userId}/slack-id 내부 회원 슬랙 아이디 기준 조회
POST /api/auth/signup 회원가입
POST /api/auth/signin 회원 로그인
POST /api/auth/logout 회원 로그아웃
POST /api/auth/refresh 회원 액세스 토큰 리프레시

Clone this wiki locally