Skip to main content

.getArticlesWithCategoryID()

Note: This API was deprecated in version 6.0.0. Use KnowledgeBase.getResorces() instead.

 This API allows you to get a list of all articles within a category in your SalesIQ knowledge base. The API takes the category ID as input.

Parameters:

NameDescription
categoryIDUnique ID of the category

Callbacks:

NameDescription
errorError is returned if an error occurs while using the API. The list of possible error codes returned by the API are listed below.
articlesList of articles

Error Codes:

CodeMessage
500mobilisten not initialized
605mobilisten disabled
608invalid category id
600 no network connection

Usage

CopiedZohoSalesIQ.getArticlesWithCategoryID("3141", function(articles){
	// your code goes here
}, function(error){
	// your code to handle errors
});