In-App Message Templates

In the event that you want to show the InApp scheme in a different way to how our SDK paints it, we put at your disposal some methods so that you can customize the "painting", without affecting the statistics or the InApp functionalities.

InApp object pickup

window.plugins.indigitallInApp.getInApp(inAppId, (inApp) => {
  //Do something
});

Check if the InApp should be displayed

Thanks to the InApp functionalities, it is possible to indicate that the inApp is displayed or pressed a maximum number of times, or if in the case of the popUp, after performing an action , such as pressing the close button, is not shown again. To do this we could do the following within the inAppGet method that we have seen previously:

window.plugins.indigitallInApp.getInApp(inAppId, (inApp) => {
   
});

In the event that you want to show an inApp only if you make 'x' clicks or clicks on it, you must add the following:

window.plugins.indigitallInApp.addNewInAppClick({inApp:inApp, deviceId: deviceID, appKey: appKey}), () => {
  //success
}, (errorMessage) => {
  //error
});