-
Notifications
You must be signed in to change notification settings - Fork 0
장바구니 조회
milkyKim edited this page Dec 13, 2020
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /cart | 장바구니 조회 |
{
"Content-Type": "application/json"
}
None
{
"success": true,
"message": "DB 조회 성공",
"data": {
"user_idx": 1,
"order_idx": 6,
"delivery_date": "2020-12-19",
"delivery_price": 3000,
"product": [
{
"idx": 8,
"title": "볼로네제 라구 파스타",
"product_img": "https://sopt-server-27.s3.ap-northeast-2.amazonaws.com/pockit/pasta.png",
"category": 0,
"price": 27800,
"count": 2
},
{
"idx": 10,
"title": "벌집 삼겹살",
"product_img": "https://sopt-server-27.s3.ap-northeast-2.amazonaws.com/pockit/samgyum.png",
"category": 0,
"price": 13900,
"count": 1
}
]
}
}