-
Notifications
You must be signed in to change notification settings - Fork 3
현재 주문 내역 상세 조회
Bomi Kim edited this page Jan 7, 2019
·
9 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /orders/{orderIdx} | 주문내역 상세조회 |
Content-Type: application/json
Authorization: token
orderIdx: 조회할 주문내역 고유 idx(int)
{
"status": 200,
"message": "주문 상세내역 조회 성공",
"data": {
"store": "던킨도너츠 역삼 4호점",
"orderDetailList": [
{
"name": "소시지 인 치즈 베이글",
"size": 4,
"orderCount": 2,
"totalPrice": 5000,
"memo": "오늘도 맛있는 음식을 위해 고생하시는 모든 분께 감사인사 드려요^^,,"
},
{
"name": "아메리카노",
"size": 0,
"orderCount": 1,
"totalPrice": 3000,
"memo": "행복한 하루^*^"
}
]
}
}
{
"status": 404,
"message": "해당 주문 상세내역을 찾을 수 없습니다",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}