-
Notifications
You must be signed in to change notification settings - Fork 3
주문하기
Bomi Kim edited this page Jan 7, 2019
·
1 revision
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /orders | 주문하기 |
Content-Type: application/json
Authorization: token{
"storeIdx" : 5,
"orderMenuList" : [
{
"menuIdx" : 1,
"size" : 0,
"orderCount" : 2,
"memo" : "수고하세요~",
"menuTotalPrice" : 10000
},
{
"menuIdx" : 2,
"size" : 1,
"orderCount" : 1,
"memo" : "휘핑 많이 올려주세요",
"menuTotalPrice" : 3500
}
]
}
** menuTotalPrice : menu의 size별 가격 * orderCount{
"status": 201,
"message": "주문생성 성공",
"data": null
}{
"status": 400,
"message": "주문생성 실패",
"data": null
}{
"status": 401,
"message": "인증 실패",
"data": null
}{
"status": 600,
"message": "데이터베이스 에러",
"data": null
}{
"status": 500,
"message": "서버 내부 에러",
"data": null
}