Get Single

Retrieve details for a single Knowledge Base.

Get single Knowledge Base

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

Retrieve details for a single Knowledge Base. The id must be passed in to the endpoint as a query parameter.

Query Parameters

NameTypeDescription

id

integer

Knowledge Base ID

Headers

NameTypeDescription

Authorization

string

Bearer {{API_Key}}

{
    "data": {
        "success": true,
        "data": [
            {
                "baseGroupsLang": [
                    {
                        "id": 7,
                        "name": "English",
                        "code": "en",
                        "isDefault": "no"
                    }
                ],
                "createdBy": 107,
                "dateCreated": "2021-04-23T23:52:38.000Z",
                "dateUpdated": "2021-04-23T23:54:05.000Z",
                "id": 6,
                "isDefault": "no",
                "name": "updated kb group",
                "slugKey": "kb-from-api",
                "status": "draft",
                "updatedBy": 107,
                "isSetup": true,
                "customDomain": null
            }
        ]
    }
}

Last updated