Add Article

Add a new article to a Knowledge Base

Add New Article

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

Add a new article to a Knowledge Base. The body must have the required keys: "groupId" - The Knowledge Base ID "title" - Title of the article "slug" - The slug for the article

Headers

Request Body

{
  "data": {
    "success": true,
    "message": "New Article added Successfully."
  }
}

Body (row)

{
  "groupId": 1,
  "articleSlug": "New",
  "featuresImage": "",
  "title": "New Article samples",
  "description": "",
  "tags": [
    1
  ],
  "jsonContent": {},
  "departmentIds": [
    1,
    2
  ],
  "relatedArtIds": [
    1,
    2
  ],
  "articleCategories": [
    1,
    2
  ],
  "addCategory": [
    "name"
  ],
  "seoTitle": "string",
  "seoDescription": "string",
  "seoKeywords": "string",
  "author": 1,
  "botAssigned": "no",
  "autoRelated": "no",
  "access": "internal",
  "status": "draft"
}

Last updated