# create category

## 카테고리 생성

<mark style="color:green;">`POST`</mark> `htt p://rightnow.p-e.kr/category/create`

#### Request Body

| Name                                        | Type   | Description |
| ------------------------------------------- | ------ | ----------- |
| name<mark style="color:red;">\*</mark>      | String |             |
| user\_num<mark style="color:red;">\*</mark> | int    |             |

{% tabs %}
{% tab title="201: Created 카테고리 생성 성공" %}

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

{% endtab %}

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

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

{% endtab %}

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

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

{% endtab %}

{% tab title="409: Conflict 카테고리 이름이 이미 존재함" %}

```javascript
{
    'message':'already exists category_name'
}
```

{% endtab %}
{% endtabs %}
