JavaScript ( Web )
Here's a guide that can enable you to trigger Airim from any custom link or button from your website/app
Introduction
Airim has a JavaScript API to control its behaviour as you like. Below are functions that Airim supports.
These commands are queued so you don't need to wait for airim to load completely, events will be automatically fired on load in sequence.
airim('widgetOpen') // opens the widget
airim('widgetClose') // closes the widget
airim('widgetHide') // hides the widget and the launcher on the page
airim('widgetShow') // displays the widget on the pageIdentify Users
You can use the identify api to map a user on your product to an airim user. Please see the code below.
If you add the keys name, phone, email as attributes, the value will be auto populated in contact form.
// identifier can be anything like email / username etc but should be unique
// name can be any string
// tags are meant to tag a user like 'new-lead' or 'happy-customer'
airim('identify','<identifier>',{
name: '<John Smith>',
phone: '<5552121222>',
email: '[email protected]',
tags: ['tag1','tag2']
})Callbacks
OnLoad callback
Event callbacks are executed when an event like 'Open' or 'Close' takes place . Examples below
Custom positioning of the icon
Subscribe to events
Automatic Reload
If you have a single page application the widget will not be able to detect url changes. To make sure the widget is always updated please call this API when the url is changed.
Examples
Show Airim when a button is clicked on your UI
Open airim after some time
To automatically open the airim widget after 10 seconds, copy paste the following code just below the airim init function, inside the script tag
Last updated
Was this helpful?