.Chat.show()

This API is used to open the support UI for use in the custom launcher view incase the default launcher provided by Mobilisten is hidden. This API is also used to open any specific chat window by providing the  referenceID  of the chat. The  referenceID  for a chat can be obtained from various APIs, including the ZohoSalesIQ.Chat.getList()  API

Usage:

Copied//Open SDK UI
ZohoSalesIQ.Chat.show()
        
//Open a specific chat using chat referenceID
ZohoSalesIQ.Chat.show(referenceID: "001")
        
//Open a new chat window to start a new chat.
ZohoSalesIQ.Chat.show(new: true)