# update category

## 카테고리 수정

<mark style="color:purple;">`PATCH`</mark> `http://rightnoe.p-e.kr/category/update`

#### Request Body

| Name                                                  | Type   | Description |
| ----------------------------------------------------- | ------ | ----------- |
| category\_name<mark style="color:red;">\*</mark>      | String |             |
| new\_category\_name<mark style="color:red;">\*</mark> | String |             |
| new\_user\_num<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 %}
