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 widgetairim('widgetClose') // closes the widgetairim('widgetHide') // hides the widget and the launcher on the pageairim('widgetShow') // displays the widget on the page
Identify 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:'john@email.com', tags: ['tag1','tag2'] })
Callbacks
OnLoad callback
airim('onload',function(){console.log('airim widget is loaded')// custom function heredoSomething();})
Event callbacks are executed when an event like 'Open' or 'Close' takes place . Examples below
airim('on','widgetClose',function(){console.log('airim widget was closed')// custom function heredoSomething();})airim('on','widgetOpen',function(){console.log('airim widget was opened')// custom function heredoSomething();})
Custom positioning of the icon
// set the position 40px from bottom right cornerairim('setPosition',{ right:'40px', bottom:'40px'})//set position on the left sideairim('setPosition',{ left:'20px', bottom:'40px'})
Subscribe to events
airim('subscribe',function(event){// event contains a data like// { // event_cat_id: 108, --> FAQ category id// event_message: "Clicked on Question: What is life?",// event_name: "faq_click", --> name of the event// event_obj: "FAQ",// event_obj_id: 66, --> FAQ id // event_type: "click" ,// event_value: "What is life?" // }myFunction(event)})
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.
airim('reload')
Examples
Show Airim when a button is clicked on your UI
// hide airim initially// you can place this code directly below the airim scriptairim('widgetHide')var button =document.getElementById('my-button-id')button.addEventListener('click',function(){airim('widgetShow')airim('widgetOpen')})
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
var seconds =10window.setTimeout(function(){airim('widgetOpen')},seconds *1000)