provider Knowledge Base Articles PATCH /knowledge_base_articles/{article_id}/locales/{locale}/content
@utdk/front /knowledge_base_articles/{article_id}/locales/{locale}/content
Update article content in specified locale
Updates an article's content for a given locale. Required scope: `knowledge_bases:write`
article_id path required
The ID of the article to update
string
locale path required
The [locale](https://dev.frontapp.com/reference/knowledge-bases#locales) of the updated content
string

Try it

Authentication
Configure credentials for Core API
updateArticleContentInSpecifiedLocale
PATCH/knowledge_base_articles/{article_id}/locales/{locale}/content
Updates an article's content for a given locale. Required scope: `knowledge_bases:write`

Parameters

required

The ID of the article to update

required

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

Input

Teammate ID of the article author

Subject of the article

HTML content of the article

Article status

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.updateArticleContentInSpecifiedLocale({
  "article_id": "kba_123",
  "locale": "en",
  "status": "draft"
})