TEAM-LEG3ND / luwak

Backend server for on-demand-cafe project
4 stars 0 forks source link

주문 생성 시 재료 수량 기입, 매장 단건 조회 api 추가 #44

Closed redjen8 closed 3 months ago

redjen8 commented 3 months ago

변경된 주문 스펙

curl --location 'localhost:3000/shop/63/order' \
--header 'Content-Type: application/json' \
--header 'Authorization: ••••••' \
--data '{
    "ingredients": [
        {
            "ingredientId": "487dc686-87c1-4bdb-a486-13a444f52611",
            "quantity": 2
        },
        {
            "ingredientId": "dd5c8d73-70a3-49a2-a416-06581ab194a7",
            "quantity": 1
        }
    ],
    "packageType": "TO_GO",
    "temperatureType": "ICE",
    "sizeType": "SMALL"
}'