v1

latestOpenAPI 3.0.02026-07-26254134307.1 KB
Knowledge Bases

Get a knowledge base with content in specified locale

Fetches a knowledge base with its content for a given locale.

Required scope: knowledge_bases:read

get/knowledge_bases/{knowledge_base_id}/locales/{locale}/content

Path parameters

knowledge_base_idstring required

The ID of the knowledge base to fetch

localestring required

The locale of the content to fetch

Response

A knowledge base with content

idstring required

Unique identifier of the knowledge base

namestring required

Knowledge base name

status'published' | 'unpublished' required

Status of the KB

type'internal' | 'external' required

Type of the KB

locale'fr' | 'en' required

Locale of this requested KB

created_atnumber

Timestamp when the knowledge base was created

updated_atnumber

Timestamp when the knowledge base was updated

Example response

{
  "_links": {
    "self": "https://yourCompany.api.frontapp.com/knowledge_bases/knb_12",
    "related": {
      "articles": "https://yourCompany.api.frontapp.com/knowledge_bases/knb_12/articles",
      "categories": "https://yourCompany.api.frontapp.com/knowledge_bases/knb_12/categories"
    }
  },
  "id": "knb_12",
  "name": "Company Help Center",
  "status": "unpublished",
  "type": "internal",
  "locale": "en",
  "created_at": 1622672452.363,
  "updated_at": 1654309308.278
}