# delete category

## 카테고리 삭제

<mark style="color:red;">`DELETE`</mark> `http: //rightnow.p-e.kr/category`

#### Request Body

| Name                                           | Type | Description |
| ---------------------------------------------- | ---- | ----------- |
| category\_id<mark style="color:red;">\*</mark> | int  |             |

{% tabs %}
{% tab title="200: OK 카테고리 삭제 성공" %}

```javascript
{
   "message":"ok"
}
```

{% endtab %}

{% tab title="400: Bad Request 파라미터가 충분하지 않음" %}

```javascript
{
   "message":'insufficient parameters'
}
```

{% endtab %}

{% tab title="404: Not Found 삭제할 카테고리 이름이 없음" %}

```javascript
{
    'message':'no exists category name'
}
```

{% endtab %}

{% tab title="500: Internal Server Error 서버 에러" %}

```javascript
{
    'message':'err'
}
```

{% endtab %}
{% endtabs %}
