.openArticle()

Note: This API was deprecated in version 4.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:

NameDataypeDescription
articleIDStringUnique ID of the article that has to be opened

Error handling:

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

Usage

CopiedZohoSalesIQ.openArticle("552176000000018009")
    .catchError((error) {
        print(error.code);
        print(error.message);
    });