기능 | 메소드 | url |
---|---|---|
주문하기 | POST | ~/orders |
주문 목록 조회 | GET | ~/orders |
주문 상세 보기 | GET | ~/orders/{id} |
주문 확정 | PATCH | ~/orders/{id}/confirm |
주문 취소 | DELETE | ~/orders/{id} |
유저 쿠폰 발급 | POST | ~/users/coupons |
모든 쿠폰 조회 | GET | ~/coupons |
유저 쿠폰 조회 | GET | ~/users/coupons |
[POST] 주문하기 (~/orders)
[GET] 주문 목록 가져오기 (~/orders)
[GET] 주문 상세 보기 (~/orders/{id})
[PATCH] 주문 확정 → 쿠폰 발급 (~/orders/{id}/confirm)
[DELETE] 주문 취소 (~/orders/{id})
[POST] 유저 쿠폰 발급(~/users/coupons)
[GET] 모든 쿠폰 조회(~/coupons)
[GET] 유저 쿠폰 조회 (~/users/coupons)