# Delete

## Delete Knowledge base

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

Delete a Knowledge Base. The id must be passed in to the endpoint as a path parameter. **Warning**: This action cannot be undone.&#x20;

#### Path Parameters

| Name            | Type    | Description                                  |
| --------------- | ------- | -------------------------------------------- |
| KnowledgeBaseId | integer | ID of the Knowledge Base group to be deleted |

#### Headers

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

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "data": {
    "success": true,
    "message": "Knowledge base successfully deleted.",
    "data": {
      "raw": {
        "fieldCount": 0,
        "affectedRows": 1,
        "insertId": 0,
        "serverStatus": 2,
        "warningCount": 0,
        "message": "",
        "protocol41": true,
        "changedRows": 0,
        "parse": {},
        "write": {}
      },
      "affected": 1
    }
  }
}
```

{% endtab %}
{% endtabs %}
