Get

Retrieve details for all Knowledge Bases.

Get All Knowledge Base

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

This endpoint allows you to get all existing article groups in the knowledge base.

Headers

NameTypeDescription

Authorization

string

Bearer {{API_key}}

{
  "data": {
    "success": true,
    "data": [
      {
        "baseGroupsLang": [
          {
            "id": 31,
            "name": "English",
            "code": "en",
            "isDefault": "no"
          }
        ],
        "createdBy": 1,
        "dateCreated": "2021-03-19T14:01:22.000Z",
        "dateUpdated": "2021-03-19T14:20:19.000Z",
        "id": 27,
        "isDefault": "no",
        "name": "KB2 New",
        "slugKey": "kb2",
        "status": "draft",
        "updatedBy": 1,
        "isSetup": true,
        "customDomain": ""
      },
    ]
  }
}

Last updated