-
Notifications
You must be signed in to change notification settings - Fork 1
주문조회(order)
tape22 edited this page Jan 3, 2020
·
5 revisions
Context-type : application/json
메소드 | 경로 | 짧은설명 |
---|---|---|
POST | /order/goodsList | 최종 주문된 리스트 받은거 디비에 넣기 |
Request 주문 리스트를 넘겨줄 때 배열로 넘기기
{
"orderList": ["5e0ce3f0e055d50011a1d64e","5e0ce583e055d50011a1d64f"]
}
Response
Success : 최종 주문된 리스트 조회 성공
{
"code": 200,
"json": {
"success": true,
"data": [
{
"img": [
"https://fluff-s3.s3.ap-northeast-2.amazonaws.com/1577903085757.jpg",
"https://fluff-s3.s3.ap-northeast-2.amazonaws.com/1577903086627.jpg",
"https://fluff-s3.s3.ap-northeast-2.amazonaws.com/1577903086925.jpg"
],
"price": 22000,
"_id": "5e0ce3f0e055d50011a1d64e",
"goodsName": "꽃자수 가디건",
"sellerName": "자일동생신일"
},
{
"img": [
"https://fluff-s3.s3.ap-northeast-2.amazonaws.com/1577903488469.jpg",
"https://fluff-s3.s3.ap-northeast-2.amazonaws.com/1577903489547.jpg"
],
"price": 43000,
"_id": "5e0ce583e055d50011a1d64f",
"goodsName": "닥스 스퀘어 백",
"sellerName": "12345연서"
}
]
}
}
Fail: 장바구니 테이블에 상품 업로드 실패
{
"code": 400,
"json": {
"success": false,
"message": "해당 조건에 일치하는 데이터가 없습니다"
}
}
Context-type : application/json
메소드 | 경로 | 짧은설명 |
---|---|---|
GET | /order/goodsList | 최종 주문된 리스트 받은거 디비에 넣기 |
Response
Success : 최종 주문된 리스트 조회 성공
{
"code": 200,
"json": {
"success": true,
"data": [
{
"createdAt": "2019-12-29T09:41:55.791Z",
"sellerName": "자일동생신일",
"Img": "alice.url",
"goodsName": "chaelin3",
"price": 500
},
{
"createdAt": "2019-12-29T09:42:15.646Z",
"sellerName": "자일동생신일",
"Img": "url.png",
"goodsName": "chaelin4",
"price": 3000
},
{
"createdAt": "2019-12-29T09:41:55.791Z",
"sellerName": "자일동생신일",
"Img": "alice.url",
"goodsName": "chaelin3",
"price": 500
},
{
"createdAt": "2019-12-29T09:42:15.646Z",
"sellerName": "자일동생신일",
"Img": "url.png",
"goodsName": "chaelin4",
"price": 3000
}
]
}
}
Fail: 최종 주문된 리스트 조회 실패
{
"code": 400,
"json": {
"success": false,
"message": "해당 조건에 일치하는 데이터가 없습니다"
}
}