Add Category

Add a new category in the Knowledge Base.

Add New Category

POST https://{{account_id}}.acquire.io/api/v1/kb/category/add

This endpoint allows you to add a new category in the Knowledge Base.

Headers

NameTypeDescription

Authorization

string

Authentication token to track down who is emptying our stocks.

Request Body

NameTypeDescription

name

string

Name of the category. Must be unique.

groupId

integer

ID of the Knowledge Base group you are adding the category to

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

Body (row)

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

Last updated