Add

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

Add Knowledge base

POST https://{{account_uid}}.acquire.io/api/v1/kb/group/add

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

Headers

NameTypeDescription

Authorization

string

Bearer {{API_key}}

Request Body

NameTypeDescription

name

string

Knowledge Base name

{
  "data": {
    "success": true,
    "message": "Knowledge base created successfully.",
    "data": {
      "id": 4,
      "name": "Custom Group Articles of Acquire's KB",
      "isDefault": "no",
      "slugKey": "kb-custom-group-acquire",
      "createdBy": 28,
      "updatedBy": 28,
      "status": "draft",
      "internalApp": "no",
      "widgetApp": "no",
      "dateCreated": "2021-04-06T09:27:15.000Z",
      "dateUpdated": "2021-04-06T09:30:34.980Z",
      "scrapingToken": null
    }
  }
}

Body (row)

{
  "name": "Custom Group Articles of Acquire's KB",
  "customDomain": "custom-grp-articles.acquire.io",
  "language": "en"
}

Last updated