Update Category

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

Update Category

PUT 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

NameTypeDescription

id

integer

The category

Headers

NameTypeDescription

Authorization

string

Bearer {{API_key}}

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

Body (row)

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

Last updated