In this help article, we will learn how to display the individual help center services as modules on the ASAP help Widget. The modules can be viewed based on their default configuration and the settings configured in your Zoho Desk portal. It's important to note that the default configuration of modules may differ depending on the edition of your Zoho Desk account.
Home Screen
To display the Zoho Desk Home Screen, use the following code snippet:
- import {
ZDPortalHome
} from '@zohocorp/zohodesk-portal-core';
ZDPortalHome.show();
Knowledge Base Module
To display the Knowledge Base, use the following code snippet:
- import {
ZDPortalKB
} from '@zohocorp/zohodesk-portal-kb';
ZDPortalKB.show();
To display the Community module, use the following code snippet:
- import {
ZDPortalCommunity
} from '@zohocorp/react-native-zohodesk-portal-community';
ZDPortalCommunity.show();
Tickets Module
To display the Tickets List, use the following code snippet:
- import {
ZohoDeskPortalTicket
} from '@zohocorp/zohodesk-portal-ticket';
ZohoDeskPortalTicket.show();
To display the Submit Ticket form, use the following code snippet:
- import {
ZohoDeskPortalSubmitTicket
} from '@zohocorp/zohodesk-portal-ticket';
ZohoDeskPortalSubmitTicket.show();
SalesIQ Module
To display the SalesIQ module, use the following code snippet:
- import {
ZohoDeskPortalSalesIQ
} from ''@zohocorp/zohodesk-portal-salesiq';
ZohoDeskPortalSalesIQ.show();
Guided Conversations Module
To display the Guided Conversation module, use the following code snippet:
- import {
ZohoDeskPortalChatKit
} from '@zohocorp/react-native-zohodesk-portal-chatkit';
ZohoDeskPortalChatKit.showGC();
Business Messaging Module
To display the Business Messaging module, use the following code snippet:
- import {
ZohoDeskPortalChatKit
} from '@zohocorp/react-native-zohodesk-portal-chatkit';
ZohoDeskPortalChatKit.showBM();
Answer Bot Module
To display the Answer Bot module, use the following code snippet:
- import {
ZohoDeskPortalChatKit
} from '@zohocorp/react-native-zohodesk-portal-chatkit';
ZohoDeskPortalChatKit.showAnswerBot();