In-App Notifications

In-app Messaging includes both Banners and Surveys. They are displayed on the basis of user activities.

Every event occurs in the context of an Activity. Every activity can be associated with some contextual data, which can be used as targeting rules for In-app Messaging.

Use the below show() Method for every activity. show() Method should be used only once as per the activity.
You can pass an optional callback function as the last parameter if you want to get responses from banners and survey clicks.

const inAppData = {tokens:{"name":"neeraj"}, customRules:{"banerrType":"dashborad"}};
NotifyVisitors.show(inAppData);

Example:-

 const inAppData = {
      tokens: { name: "neeraj" },
      customRules: { page: "dashborad" },
 };
 NotifyVisitors.show(inAppData);

DYNAMIC TOKENS (JSON Object)

Dynamic tokens are used to show personalized content in Notification messages in real time.

 const inAppData = {
      tokens: { name: "neeraj" },
      customRules: { page: "dashborad" },
 };
 NotifyVisitors.show(inAppData);

CUSTOM RULES (JSON Object)

This data can be used in configuring targeting rules for the Notifications.

 const inAppData = {
      tokens: { name: "neeraj" },
      customRules: { page: "dashborad" },
 };
 NotifyVisitors.show(inAppData);