> For the complete documentation index, see [llms.txt](https://baeminchan-project.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://baeminchan-project.gitbook.io/project/undefined-2/undefined-4.md).

# 주문 하기

## Get Cakes

<mark style="color:green;">`POST`</mark> `https://api.elegantsiblings.xyz/order/`

입력방식 및 결과는 주문 page에서 확인

#### Headers

| Name          | Type   | Description        |
| ------------- | ------ | ------------------ |
| Authorization | string | Token \<token key> |

#### Request Body

| Name              | Type    | Description                                                   |
| ----------------- | ------- | ------------------------------------------------------------- |
| address           | string  |                                                               |
| delivery\_date    | string  | 2018-12-23 (이 형식을 맞춰줘야함)                                      |
| total\_price      | integer | 결제금액(4만원이하시 배송비 2500원 추가 금액 까지 포함)                            |
| order\_item\_list | array   | 안에 다시 json을 넣어야함 \[{"cart\_item\_pk":1},{"cart\_item\_pk":4}] |

{% tabs %}
{% tab title="200  주문 완료된 내용이 뜸" %}

```javascript
{
    "order_pk": "9",
    "user_pk": "1",
    "order_date_time": "2018-12-06T10:40:28.651951+09:00",
    "delivery_date": "2018-11-12",
    "total_price": 54000,
    "cart_items": [
        {
            "cart_item_pk": "11",
            "user": {
                "user_pk": "1",
                "username": "lee",
                "first_name": "test",
                "last_name": "",
                "email": "",
                "img_profile": null
            },
            "item": {
                "item_pk": "3",
                "company": "탐나는밥상",
                "item_name": "표고버섯 무나물 (1인분) 150g",
                "origin_price": 4500,
                "sale_price": 4050,
                "discount_rate": 0.1,
                "list_thumbnail": null
            },
            "amount": 2
        },
        {
            "cart_item_pk": "12",
            "user": {
                "user_pk": "1",
                "username": "lee",
                "first_name": "test",
                "last_name": "",
                "email": "",
                "img_profile": null
            },
            "item": {
                "item_pk": "2",
                "company": "집밥의완성",
                "item_name": "고깃집 그 참기름 묵은지무침 (1~2인분) 200g",
                "origin_price": 3300,
                "sale_price": 2450,
                "discount_rate": 0.25,
                "list_thumbnail": "https://wps-9th-chajeehyung-practice.s3.amazonaws.com/media/Item/cat7.jpg?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIG4DIK7WJ5QD5WAA%2F20181206%2Fap-northeast-2%2Fs3%2Faws4_request&X-Amz-Date=20181206T014028Z&X-Amz-Expires=3600&X-Amz-SignedHeaders=host&X-Amz-Signature=4ec93b10df8111e0c660078b9e82feab548653df73d652b61845f44b4754673b"
            },
            "amount": 2
        }
    ]
}
```

{% endtab %}

{% tab title="400 " %}

```javascript
1. cart_item_pk가 잘못 요청되었을 
{
    "error": "장바구니에 존재하지 않는 item을 주문하려고 합니다"
}
2. 다른 input의 이름이 잘못 되었거나 없을 
{
    "error": "입력한 조건으로 주문이 불가능 합니다"
}
3. 배달일이 주문일보다 빠른 경우
{
    "error": "배달 요청일이 주문일보다 빠릅니다"
}
```

{% endtab %}
{% endtabs %}
