provider Knowledge Bases POST /knowledge_bases/{knowledge_base_id}/locales/{locale}/categories
@utdk/front /knowledge_bases/{knowledge_base_id}/locales/{locale}/categories
Create knowledge base category in specified locale
Creates a knowledge base category for a given locale. Required scope: `knowledge_bases:write`
knowledge_base_id path required
The ID of the knowledge base to create the category in
string
locale path required
The [locale](https://dev.frontapp.com/reference/knowledge-bases#locales) of the category's content
string

Try it

Authentication
Configure credentials for Core API
createKnowledgeBaseCategoryInSpecifiedLocale
POST/knowledge_bases/{knowledge_base_id}/locales/{locale}/categories
Creates a knowledge base category for a given locale. Required scope: `knowledge_bases:write`

Parameters

required

The ID of the knowledge base to create the category in

required

The [locale](https://dev.frontapp.com/reference/knowledge-bases#locales) of the category's content

Input

ID of the parent category

required

Name of the knowledge base category

Description of the knowledge base category

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import front from '@utdk/front';

await front.createKnowledgeBaseCategoryInSpecifiedLocale({
  "knowledge_base_id": "knb_123",
  "locale": "en"
})