Skip to product menu
Skip to main content

.openArticle()

Note: This API was deprecated in version 7.0.0. Use KnowledgeBase.open() instead.

This API can be used to open any article from your SalesIQ knowledge base. The Article ID is used to identify the article.

Parameters:

NameDescription
articleIDUnique ID of the article that has to be opened

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

Error Codes:

CodeMessage
605mobilisten disabled
500mobilisten not initialized
603no article found for the given id

Syntax:

CopiedZohoSalesIQ.openArticle(articleID, (error) => {} );

Example

CopiedZohoSalesIQ.openArticle("1001", (error) => 
{
   //your code
});