Delete

Delete a Knowledge Base.

Delete Knowledge base

DELETE 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.

Path Parameters

NameTypeDescription

KnowledgeBaseId

integer

ID of the Knowledge Base group to be deleted

Headers

NameTypeDescription

Authorization

string

Bearer {{API_key}}

{
  "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
    }
  }
}

Last updated