-
Notifications
You must be signed in to change notification settings - Fork 2
주문 상세내역 조회
Bomi Kim edited this page Jan 11, 2019
·
3 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /stores/{storeIdx}/orderLists/{orderIdx} | 주문 상세내역 조회 |
Content-Type: application/json
storeIdx : 주문서를 조회할 매장의 고유 idx(int)
orderIdx : 상태를 변경할 주문서의 고유 idx(int)
{
"status": 200,
"message": "주문내역 상세조회 성공",
"data": [
{
"menuName": "소시지 인 치즈 베이글",
"size": 4,
"orderCount": 2,
"menuCountPrice": 5000,
"memo": "오늘도 맛있는 음식을 위해 고생하시는 모든 분께 감사인사 드려요^^,,"
},
{
"menuName": "아메리카노ICE",
"size": 0,
"orderCount": 1,
"menuCountPrice": 3000,
"memo": "행복한 하루^*^"
}
]
}
{
"status": 404,
"message": "해당 매장이 존재하지 않습니다.",
"data": null
}
{
"status": 404,
"message": "해당 주문서가 존재하지 않습니다.",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}