> For the complete documentation index, see [llms.txt](https://fastbnb.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://fastbnb.gitbook.io/project/undefined-7.md).

# 예약 취소하기

## Cancel

<mark style="color:red;">`DELETE`</mark> `https://backends.xyz/api/home/booking/`

#### Headers

| Name           | Type   | Description                                                    |
| -------------- | ------ | -------------------------------------------------------------- |
| Authentication | string | Authentication token to track down who is emptying our stocks. |

#### Request Body

| Name        | Type    | Description       |
| ----------- | ------- | ----------------- |
| booking\_id | integer | "booking\_id": 46 |

{% tabs %}
{% tab title="200 . 성공적으로 예약 취소가 됐을 경우에 리턴하는 " %}

```javascript
{
    "message": "정상적으로 예약이 취소됐습니다."
}
```

{% endtab %}

{% tab title="400 " %}

```javascript
{
    "detail": "찾을 수 없습니다."
}
```

{% endtab %}
{% endtabs %}
