class Appboy::REST::TrackUsers
Public Instance Methods
perform(app_group_id, attributes: [], events: [], purchases: [])
click to toggle source
# File lib/appboy/rest/track_users.rb, line 4 def perform(app_group_id, attributes: [], events: [], purchases: []) http.post '/users/track', { app_group_id: app_group_id, attributes: attributes, events: events, purchases: purchases } end