How to display the Help Center's services as modules on your mobile app?

How to display the Help Center's services as modules on your mobile app?

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:
  1. import {ZohoDeskPortalHome} from '@zohocorp/zohodesk-portal-core';
  2. ZohoDeskPortalHome.show()

Knowledge Base Module

To display the Knowledge Base, use the following code snippet:
  1. import {ZohoDeskPortalKB} from  '@zohocorp/zohodesk-portal-kb';
  2. ZohoDeskPortalKB.show()

Community Module

To display the Community module, use the following code snippet:
  1. import {ZohoDeskPortalCommunity} from '@zohocorp/zohodesk-portal-community';
  2. ZohoDeskPortalCommunity.show()

Tickets Module

To display the Tickets List, use the following code snippet:
  1. import {
  2. ZohoDeskPortalTicket
  3. } from '@zohocorp/zohodesk-portal-ticket';
  4. ZohoDeskPortalTicket.show();
To display the Submit Ticket form, use the following code snippet:
  1. import {
  2. ZohoDeskPortalSubmitTicket
  3. } from '@zohocorp/zohodesk-portal-ticket';
  4. ZohoDeskPortalSubmitTicket.show();

SalesIQ Module

To display the SalesIQ module, use the following code snippet:
  1. import {
  2. ZohoDeskPortalSalesIQ
  3. } from ''@zohocorp/zohodesk-portal-salesiq';
  4. ZohoDeskPortalSalesIQ.show();

Guided Conversations Module

To display the Guided Conversation module, use the following code snippet:
  1. import {ZohoDeskPortalChatKit} from '@zohocorp/zohodesk-portal-chatkit';
  2. ZohoDeskPortalChatKit.showGC();

Business Messaging Module

To display the Business Messaging module, use the following code snippet:
  1. import {ZohoDeskPortalChatKit} from '@zohocorp/zohodesk-portal-chatkit';
  2. ZohoDeskPortalChatKit.showBM();

Answer Bot Module

To display the Answer Bot module, use the following code snippet:
  1. import {ZohoDeskPortalChatKit} from '@zohocorp/zohodesk-portal-chatkit';
  2. ZohoDeskPortalChatKit.showAnswerBot();