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

Name
Type
Description

id

integer

The category

Headers

Name
Type
Description

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