Send PushBots any interesting activity your user performs in your app and store them as events. PushBots record the count, first and last occurrence of an event. Filter your customers base according to these events and take intelligent actions.

iOS (2.3.0+):

Objective-c:

[Pushbots trackEvent:@"subscribed_silver"];

swift:

Pushbots.trackEvent("subscribed_silver")

Android (v3.1+):

Pushbots.sharedInstance().trackEvent("subscribed_silver");

Web (v1.1.3+):

PB.trackEvent("subscribed_silver");

Phonegap/cordova (v1.6.0+):

window.plugins.PushbotsPlugin.trackEvent("subscribed_silver");

React Native (v1.1.0+):

Pushbots.trackEvent("subscribed_silver")
Did this answer your question?