Authorization: Bearer ********************{
"product": {
"id": 12345,
"price": 500000
},
"deliveryPrice": 3000
}curl --location --request POST 'https://openapi.bunjang.co.kr/api/v1/orders' \
--header 'Content-Type: application/json' \
--data-raw '{
"product": {
"id": 12345,
"price": 500000
},
"deliveryPrice": 3000
}'{
"data": {
"id": 1,
"seller": {
"id": 12345,
"shopName": "Bunjang Shop"
},
"product": {
"id": 12345,
"name": "Product Name",
"price": 500000,
"imageUrl": "https://media.bunjang.co.kr/product/12345_1_1727762609_w360.jpg"
},
"payment": {
"productPrice": 500000,
"deliveryPrice": 3000,
"totalPrice": 503000
},
"detailUrl": "",
"createdAt": "2024-08-01T13:00:00Z"
}
}