Smartlist Push API
The Smartlist Push API allows you to send your user activity to Smartlist to drive analytics and automated messaging through the Smartlist application. The data that you send to Smartlist is used to set up filters that enable the creation of segments and targeting for automated messaging to users.
Installation
To get started, add this line to your application's Gemfile:
gem 'smartlist_push_api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install smartlist_push_api
Enabling Push API
First, you will need an account at Smartlist. After you create an account, you can enable the Push API from your profile settings where you can get an access token.
Create initializer smartlist_push_api.rb
and put
SmartlistPushApi.access_token = 'your-access-token'
Usage
User Account
Once a user registers within your app, you can send that information to Smartlist via the following:
SmartlistPushApi::User.create({
email: 'user@example.com',
ref_id: 'ref_user_102',
first_name: 'John',
last_name: 'Doe',
display_name: 'John Doe',
company_name: 'ABC Corp',
ref_created_at: '2016-07-26 20:28:37',
ref_updated_at: '2016-07-27 18:08:37'
})
The field ref_id
is required and should be unique for each user from your app. You will use that field to create or update a user’s information.
You can also use the above method to deliver your existing users data to Smartlist.
When a user changes their data, you can sync information with Smartlist with the following method:
SmartlistPushApi::User.update('ref_user_102', {first_name: 'Joana'})
The first attribute is a ref_id
and the second attribute is the object that has any of the previously mentioned user attributes, as well as the attribute unsubscribed
. Setting unsubscribed
to false will prevent this user from receiving emails. If user leaves your app, you should remove them from Smartlist with the following:
SmartlistPushApi::User.destroy('ref_user_102')
The above method will remove user who has ref_id
set to ref_user_102
from Smartlist.
Login Activity
Every time user logs in in your app, you can update Smartlist (as a way to track user activity):
SmartlistPushApi::User.signed_in('ref_user_102', Time.current)
This method receive two attributes: user's ref_id
and a datetime
object.
You can also use the above method to deliver your existing users login activity to Smartlist.
Subscription Activity
If your app has subscription plans, you can send that to Smartlist to filter users by subscription type.. In addition, we recognize four different subscription event types: signed_up, canceled, upgraded and downgraded.
- signed_up should be sent when user start using a plan for the first time (after first registering with your app);
- canceled should be sent when user cancels a plan;
- upgraded when user upgrades to a higher plan;
- downgrade when user downgrades to a lower plan.
SmartlistPushApi::User.started_subscription('ref_user_102', 'Freemium', 1.week.ago)
SmartlistPushApi::User.upgraded_subscription('ref_user_102', 'Freemium', 'Pro', 1.week.ago)
SmartlistPushApi::User.downgraded_subscription('ref_user_102', 'Pro', 'Freemium', 2.days.ago)
SmartlistPushApi::User.canceled_subscription('ref_user_102', 'Pro', 2.days.ago)
You can also use the above method to deliver your existing users subscription status to Smartlist.
Custom Events
For all other events that you have inside your app, you can use following method to post them to Smartlist.
SmartlistPushApi::Custom.create('ref_user_102', {
event: 'rented-movie',
title: 'The Man Who Knew Infinity',
event_date: '2016-07-26 20:28:37',
payload: ['drama', 'biography']
})
License
The gem is available as open source under the terms of the MIT License.