Step 1: Get your Acquire Account ID
You can find your accountID
as shown in image below :
Step 2: Verify your users
Make sure your users are who they claim to be with identity verification. Enforce identity verification to prevent other from pretend to be (third party) for entertainment or fraud logged-in users. Generate an HMAC with SHA256
whenever a user logs into your app. Most web frameworks will have a method or library to help you do this.
You'll need your app’s secret key and the email of the currently logged-in user.
Secret Key
For example, in Ruby on Rails we can generate our HMAC using a method called OpenSSL::HMAC.hexdigest
, where the first parameter is the name of a hash function (we use SHA256
), the second is YOUR_SECRET_KEY
, and the third is your USER_EMAIL
.
Keep your secret key safe! Never commit it directly to your repository, client-side code, or anywhere a third party can find it.
To set up identity verification, you'll need to generate an HMAC on your server for each logged-in user and set in acquireIOSupport SDK.
If your visitor is identified (i.e., visitor has already logged in your app and you have a email address of visitor), call the following method before setAccount: an identified user.
AcquireIO.support.setVisitorHash(<_Nonnull_Generated_HMAC_of_email>)
Parameter | Type | Description |
_Nonnull_Generated_HMAC_of_email | String | A HMAC digest of the visitor email. |
setVisitorHash()
must be called before setAccount: takes place and must pass same email insetVisitorDetail()
.
Step 3: Setup Account
To setup an account, call below method.
AcquireIO.support.setAccount("your_acquire_account_id", withOptions: config)
Parameter | Type | Description |
ACCOUNT_ID | String | your account id from acquire dashboard from Step 1 |
configOptions | [String : Any] | config options. For more details on config options  |
showSupport
Calling this method will start a connection session with acquire server. After calling showSupport()
, the AcquireIODelegate
delegate will receive either didChangeConnectionStatus:
or onError:
AcquireIO.support.showSupport(<viewcontroller_instance>)
Parameter | Type | Description |
viewController | UIViewController | instance of viewcontroller on which support button should be displayed |
setAccount: should be called first before calling above method
startSession
Calling this method will start a connection session with Acquire server. After calling startSession()
, the AcquireIODelegate
delegate will receive either didChangeConnectionStatus:
or onError:
AcquireIO.support.startSession()
setAccount: should be called first before calling above method
To customize visitor’s identification, you can call following sdk method to set the name, phone, email and fields of the app visitor. This is part of additional visitor configuration. Use this method before initialization of sdk otherwise it wont work.
func setVisitorDetails(_ data: [String: Any])
Parameter | Type | Description |
data | [String: Any] | details of visitor e.g.["name":"abc","phone":"xxxxxxxx","email":"[email protected]"] |
Pass nil values for both name and email to clear out old existing values.
If this is provided through the api, user will not be prompted to re-enter this information again.
If you have set visitor hash (HMAC digest) and visitor just logged out from account and need to manage user integrity with agent, call method logoutVisitor()
to remove all acquire data from your app related to visitorHash
. To logout
from AcquireIOSupport, calling below method is mandatary:
AcquireIO.support.logoutVisitor()
To fetch visitorID after acquire session Connected. Returns string
let visitorID = AcquireIO.support.getVisitorID()
To fetch total number of available agents. Returns Int
.
let agentsAvailableCount = AcquireIO.support.getAvailableAgentCount()
To fetch agentIDs of online agents. Returns [NSNumber]
.
let agentsIDs = AcquireIO.support.getOnlineAgentIDs()