HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
👊
[승찬민] Around The Town (동네한바퀴)
/
💬
API Spec
/
주문 등록

주문 등록

URI
/api/v1/order
담당자
Method
POST
진행상태
COMPLETE

Request

{ "memberId":1, "orderProductCreateRequestDtos":[ { "productId":1, "count":2 }, { "productId":2, "count":3 } ] }

Response

MockHttpServletResponse: Status = 201 Error message = null Headers = [Content-Type:"application/json;charset=UTF-8"] Content type = application/json;charset=UTF-8
{ "orderId":1 }
응답 성공시 201(created) 를 보낸다.
응답 실패시 200(internal server error)를 보낸다.