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

How to display the Help Center's services as modules on your iOS 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.

To display the SDK Dashboard

The SDK dashboard is the screen through which end-users access your help center services. This dashboard displays icons or buttons that provide access to your Knowledge Base, Community Forums, Support Team (through the ticket submission form), tickets list (a list of tickets submitted by users who are logged in), and Chat (to interact with a customer support agent in real-time).
    •    If you want to display the Chat module (one of the available ASAP services), ensure it is enabled on the Zoho Desk web portal.
    •    You can hide a module on the dashboard and launch it from a different location in your app.
    •    You can also display the SDK dashboard on your app while providing access to individual help modules.
To display the SDK dashboard, include the following code in any method you choose:

Swift

  1. import ZohoDeskPortalCore
    ...
    ZDPortalHome.show()

Objective-C

  1. @import ZohoDeskPortalCore;
    
...
    
[ZDPortalHome showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

To display the SDK Dashboard with overridden configuration

    I Display selected modules in the SDK dashboard

The SDK enables you to embed your preferred help center services as modules in your application, excluding the other modules.
By default, all the support modules are enabled. You can disable a particular support module by passing the value "false."

The following method displays the SDK dashboard with its configuration overridden:

Swift

  1. let config = ZDPHomeConfiguration()
    config.enableHelpCenter = true
    config.enableCommunity = true
    config.enableCreateTicket = true
    config.enableMyTicket = true
    config.enableAddTopic = true
    config.showChat = true
    config.showChatBot = true
    ZDPortalHome.updateConfiguration(with: config)
    ZDPortalHome.show()

Objective-C

  1. ZDPHomeConfiguration * config = [[ZDPHomeConfiguration alloc]init];
    config.enableHelpCenter = YES;
    config.enableCommunity = YES;
    config.enableCreateTicket = YES;
    config.enableMyTicket = YES;
    config.enableAddTopic = YES;
    config.showChat = YES;
    config.showChatBot = YES;
    [ZDPortalHome updateConfigurationWith:config];
    [ZDPortalHome showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

    II Display individual modules without displaying the SDK dashboard

You also have the option to provide access to individual help center services as modules without displaying the SDK dashboard on your application.

The following methods help you display the individual modules with their default configuration.

Chat Module 

Chat provides a real-time communication channel for end-users to interact with customer support agents.

The following method displays the Chat module:

Swift

  1. import ZohoDeskPortalChat
    ...
    ZDPortalChat.show()

Objective-C

  1. @import ZohoDeskPortalChat;
    ...
    [ZDPortalChat show];

Knowledge Base Module 

The Knowledge Base module enables end-users to access through help articles.

Swift

  1. import ZohoDeskPortalKB

Objective-C

  1. @import ZohoDeskPortalKB;

    (ii) The following methods display the Knowledge Base:

Swift

  1. ZDPortakKB.show()

Objective-C

  1. [ZDPortalKB showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

Swift

  1. ZDPortalKB.showCategory(withPermalink: <#String#>)

Objective-C

  1. [ZDPortalKB showCategoryWithPermalink:<#(NSString * _Nonnull)#> withTitle:<#(NSString * _Nullable)#>];
Permalink refers to the URL of the Knowledge Base category.



For example, in the URL in the image above, the portion following "/kb/" is the category's permalink. You can pass this portion as the path of the category or sub-category.

    (iv) To display an article directly using its permalink, use the following method:

Swift

  1. ZDPortalKB.showArticle(withPermalink : <#String#>)

Objective-C

  1. [[ZDPortalKB showArticleWithPermalink:<#(NSString * _Nonnull)#> withTitle:<#(NSString * _Nullable)#>];
Permalink refers to the URL of the Knowledge Base category.



For example, in the URL in the image above, the portion following "/articles/" is the article's permalink.

Tickets Module

The ticket module in Zoho Desk manages all customer support requests or inquiries. Each Ticket includes the customer's name, email, phone number, and issue. The ticket module also offers automated ticket assignment, escalation, and SLA management to help support teams streamline their workflow and efficiently support their customers.

Include the following import statement for all method calls related to the Tickets module:

Swift

  1. import ZohoDeskPortalTicket

Objective-C

  1. @import ZohoDeskPortalTicket;

Submit Tickets 

Submit Ticket is the screen through which end-users can submit their questions/requests as support tickets. It allows support agents to view, track, prioritize, and respond to customer tickets in one place.

The following methods display the Submit Ticket screen:

Swift

  1. ZDPortalSubmitTicket.show()

Objective-C

  1. [ZDPortalSubmitTicket showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

My Tickets 

My Tickets is the screen through which end-users can access, track, and edit their submitted tickets.

The following methods display the My Tickets screen:

Swift

  1. ZDPortalTicket.show()

Objective-C

  1. [ZDPortalTicket showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

User Community Module 

User Community is the module through which end-users can access discussion forums and interact with other users to share knowledge.

Swift

  1. import ZohoDeskPortalCommunity

Objective-C

  1. @import ZohoDeskPortalCommunity;

    (ii) To display the User's Community

Swift

  1. ZDPortalCommunity.show()

Objective-C

  1. [ZDPortalCommunity showWithTitle:<#(NSString * _Nullable)#> navigationMode:<#(enum ZDPNavigationMode)#>];

    (iii) To display a particular topic

Swift

  1. ZDPortalCommunity.showTopic(withID: <#String#>)

Objective-C

  1. [ZDPortalCommunity showTopicWithID:<#(NSString * _Nonnull)#> withTitle:<#(NSString * _Nullable)#>];

Guided Conversations Module 

Guided Conversations helps end-users find answers themselves or perform a standard process without an agent's assistance by following a pre-built conversation flow.

Swift

  1. import ZohoDeskPortalLiveChat

Objective-C

  1. @import ZohoDeskPortalLiveChat;

    (ii) The following methods display the Guided Conversations

Swift

  1. ZDPortalLiveChat.show()

Objective-C

  1. [ZDPortalLiveChat show];
Once you enable the Guided Conversations and Zia modules, the Chat component will be displayed as below



When you enable Guided Conversations and Zia together, Guided Conversations gets loaded by default, and you can switch to Zia if necessary. Please note that you cannot switch between Zia and Guided Conversation in the middle of the flow unless you reset the flow by clicking Restart Conversation in the bottom menu.

    Zoho CRM Training Programs

    Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

    Zoho CRM Training
      Redefine the way you work
      with Zoho Workplace

        Zoho DataPrep Personalized Demo

        If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

        Zoho CRM Training

          Create, share, and deliver

          beautiful slides from anywhere.

          Get Started Now


            Zoho Sign now offers specialized one-on-one training for both administrators and developers.

            BOOK A SESSION











                                        You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                            Manage your brands on social media

                                              Zoho Desk Resources

                                              • Desk Community Learning Series


                                              • Digest


                                              • Functions


                                              • Meetups


                                              • Kbase


                                              • Resources


                                              • Glossary


                                              • Desk Marketplace


                                              • MVP Corner


                                              • Word of the Day


                                                Zoho Marketing Automation

                                                  Zoho Sheet Resources

                                                   

                                                      Zoho Forms Resources


                                                        Secure your business
                                                        communication with Zoho Mail


                                                        Mail on the move with
                                                        Zoho Mail mobile application

                                                          Stay on top of your schedule
                                                          at all times


                                                          Carry your calendar with you
                                                          Anytime, anywhere




                                                                Zoho Sign Resources

                                                                  Sign, Paperless!

                                                                  Sign and send business documents on the go!

                                                                  Get Started Now




                                                                          Zoho TeamInbox Resources



                                                                                  Zoho DataPrep Resources



                                                                                    Zoho DataPrep Demo

                                                                                    Get a personalized demo or POC

                                                                                    REGISTER NOW


                                                                                      Design. Discuss. Deliver.

                                                                                      Create visually engaging stories with Zoho Show.

                                                                                      Get Started Now









                                                                                                          • Related Articles

                                                                                                          • How to display the Help Center's services as modules on your Android 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 ...
                                                                                                          • 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 ...
                                                                                                          • Introducing ASAP iOS SDK

                                                                                                            Equipping the Help Center services as widgets to deliver instant assistance to your customers The ASAP SDK for iOS provides easy access to help your iOS app's end users. Using this SDK, you can create and customize a help widget within your app and ...
                                                                                                          • FAQs: Help Center

                                                                                                            What is help center in Desk? Help Center is a customer portal that allows users to learn about the product and understand its processes by accessing knowledge base articles. It provides a platform for self-help and learning, where users can find ...
                                                                                                          • Customizing Help Center Home Page

                                                                                                            Customize the way your Help Center content is organized using the simple drag-drop method in Zoho Desk. You can add custom widgets, show or hide tabs and customize their appearance to keep your customers engaged with the right content at the right ...
                                                                                                            Wherever you are is as good as
                                                                                                            your workplace

                                                                                                              Resources

                                                                                                              Videos

                                                                                                              Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                              eBooks

                                                                                                              Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                              Webinars

                                                                                                              Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                              CRM Tips

                                                                                                              Make the most of Zoho CRM with these useful tips.



                                                                                                                Zoho Show Resources