Connect with customers at every step of their journey. Give them the best in-app live chat experience with Mobilisten. Mobilisten enables customers to reach you from any screen on your app, get their questions answered, and make better purchase decisions.
You can integrate Mobilisten in your application using Cocoapods using the Mobilisten pod. Here is an example Podfile where Mobilisten is included.
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
target 'Project Target' do
use_frameworks!
pod 'Mobilisten', '9.2.0'
end
After Mobilisten is added to your Podfile, run the pod install
command to complete the Installation.
You can now integrate Mobilisten with your app using SPM 🎉 Learn More
You can find our manual integration guide here
Mobilisten comes with a set of highly configurable APIs to suit your needs. Register your app's Bundle ID via the SalesIQ Console to generate the App
and Access
keys for Mobilisten.
Use the ZohoSalesIQ.initWithAppKey(:accessKey:completion:)
API to initialize Mobilisten.
ZohoSalesIQ.initWithAppKey("app_key", accessKey: "access_key") { error in
if error == nil {
// Initialization successful
} else {
// Initialization failed, handle error
}
}
You can find the list of all APIs and their documentation here under the API Reference section