How to display GC services as modules on your iOS app?  

How to display GC services as modules on your iOS app?  

The following keys are essential to call the methods for displaying the conversation AI in your app.

  • orgId
  • widgetId
  • domain

The values of these keys appear under the Code Snippet section on the setup page of the ASAP add-on in Zoho Desk.


For all method calls related to the Guided Conversations, you must include the following import statement:

SHOW BOT:

Swift
  1. import ZohoGCSDK
Objective-C
  1. @import ZohoGCSDK;
The following methods display the Guided Conversations:


Swift

  1. ZohoGC.show(orgId: <#OrgId#>, botId: <#BotId#>, domain: <#Domain#>)

Objective-C

  1. [ZohoGC showWithOrgId:<#OrgId#> botId:<#BotId#> domain:<#Domain#>];