.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:
Name | Dataype | Description |
articleID | String | Unique ID of the article that has to be opened |
Error handling:
Code | Message |
605 | mobilisten disabled |
500 | mobilisten not initialized |
603 | no article found for the given id |
Usage
CopiedZohoSalesIQ.openArticle("552176000000018009")
.catchError((error) {
print(error.code);
print(error.message);
});