> 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/delete-category.md).

# Delete Category

## Delete Category

<mark style="color:red;">`DELETE`</mark> `https://{{account_id}}.acquire.io/api/v1/kb/category/delete/{{articleId}}?groupId={{groupId}}`

This endpoint allows you to delete a category from the Knowledge Base. The article ID must be passed in to the endpoint as a path parameter. Warning: This action cannot be undone.

#### Path Parameters

| Name      | Type    | Description    |
| --------- | ------- | -------------- |
| articleId | integer | The article ID |

#### Query Parameters

| Name    | Type    | Description                 |
| ------- | ------- | --------------------------- |
| groupId | integer | The Knowledge Base group ID |

#### Headers

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

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

```
{
  "data": {
    "success": true,
    "message": "Category Successfully deleted.",
    "data": 67
  }
}
```

{% endtab %}
{% endtabs %}
