KustomerCore.getArticleById()
Fetches one article by id in your knowledge base
First, initialize chat
You must initialize with
KustomerCore.init()
before you can execute any additional Core SDK methods
Examples
// Gets an article by ID
KustomerCore.getArticleById({
articleId: 'SOME_ID',
lang: 'en_us',
knowledgeBaseId: 'SOME_ID'
}, function (callbackResponse, error) {
console.log('Fetched article!');
});
Syntax
KustomerCore.getArticleById(options, function(callbackResponse, error))
Parameter | Type | Description |
---|---|---|
options | Object | Required An object containing details about the article you want to fetch. A breakdown of the options object is listed below. |
function(callbackResponse, error) | Function | Optional A callback that is run after the method completes. callbackResponse is an object returned to the callback function. See the callbackResponse section below to see the properties of the object.error is either undefined or a native JavaScript Error object. |
options
options
Property | Type | Description |
---|---|---|
knowledgeBaseId | String | Required The unique ID of the knowledge base. |
lang | String | Required The language code of the categories to fetch. |
articleId | String | Required The article ID you want to fetch for. |
callbackResponse
callbackResponse
Property | Type | Description |
---|---|---|
articleId | String | Required The unique ID of the article. |
htmlBody | String | Required The article's html body. |
title | String | Required The article's title. |
description | String | Required The article's description. |
updatedAt | String | Required The article's last updated at timestamp. |
lang | String | Required The article's language code. |
slug | String | Required The article's slug for its url. |
version | String | Required The version of the article. |
hash | String | Required The article's hash code. |
kbUrl | String | Optional The article's knowledge base URL. |
knowledgeBaseId | String | Optional The article's knowledge base ID. |
Updated almost 4 years ago