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

NameTypeDescription

Authorization

string

Bearer {{API_key}}

Request Body

NameTypeDescription

slug

string

The URL slug of the article

title

string

The title of the article

groupId

integer

The ID of the Knowledge Base you want to add the article to

{
  "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