Skip to content

zoho/SalesIQ-Mobilisten-iOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

201 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Platform SupportedLanguages Version Cocoapods CDI

SalesIQ Mobilisten iOS SDK

Connect with customers at every step of their journey. Deliver the best in-app experience with Mobilisten’s live chat and voice call support. Mobilisten makes it easy for customers to reach you from any screen within your app, get their questions answered instantly, and make confident, informed decisions.

Installation using Cocoapods

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, '13.0'

target 'Project Target' do
  use_frameworks!
  pod 'Mobilisten', '10.4.2'
  # Only if using audio call support
  pod 'MobilistenCalls', '1.2.1'
end

Note: When using "pod MobilistenCalls", it is mandatory to add "pod Mobilisten".

After Mobilisten is added to your Podfile, run the pod install command to complete the Installation.

Installation using Swift Package Manager

You can now integrate Mobilisten and Mobilisten Calls with your app using SPM 🎉 Learn More

From Mobilisten iOS SDK v10.3.0, we officially support Mac Catalyst.

Getting Started

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.

Initializing Mobilisten

Use the ZohoSalesIQ.initWithAppKey(:accessKey:completion:) API to initialize Mobilisten.

import Mobilisten
import MobilistenCalls // Only if using audio call support

// Initialize MobilistenCalls (only if you're using it)
ZohoSalesIQCalls.initialise() 

// Initialize Mobilisten SDK
ZohoSalesIQ.initWithAppKey("YOUR_APP_KEY", accessKey: "YOUR_ACCESS_KEY") { error in
    if error == nil {
        print("Mobilisten initialized successfully.")
    } else {
        print("Initialization failed: \(error?.message)")
    }
}

API Documentation

You can find the list of all APIs and their documentation here under the API Reference section

About

Your mobile app's ideal live chat partner. Power up your iOS App with the SalesIQ Mobilisten iOS SDK.

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors