> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/rest-apis/knowledgebase/category/update-category.md).

# Update Category

## Update Category

<mark style="color:orange;">`PUT`</mark> `https://{{account_uid}}.acquire.io/api/v1/kb/category/update/{{id}}`

This endpoint allows you to update the details of existing category in the knowledge base.

#### Path Parameters

| Name | Type    | Description  |
| ---- | ------- | ------------ |
| id   | integer | The category |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{API\_key}} |

{% tabs %}
{% tab title="200 Category successfully updated." %}

```
{
  "data": {
    "success": true,
    "message": "Category successfully updated."
  }
}
```

{% endtab %}
{% endtabs %}

### Body (row)

```
{
  "groupId": 1,
  "parentCategory": 0,
  "name": "new",
  "description": "new",
  "categoryIcon": "string",
  "visibleOrder": 0,
  "status": "active"
}
```
