# 찜한 숙소 지우기

## remove saved\_room

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

This endpoint allows you to get free cakes.

#### Headers

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

#### Request Body

| Name     | Type    | Description  |
| -------- | ------- | ------------ |
| room\_id | integer | room\_id(pk) |

{% tabs %}
{% tab title="200 saved\_room successfully removed." %}

```javascript
{
    "message": "successfully removed"
}
```

{% endtab %}

{% tab title="400 Could not find a cake matching this query." %}

```javascript
{
    "message": "room is already removed"
}
```

{% endtab %}
{% endtabs %}
