Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. // if the user is logged in, set their userId and userProperties
  2.  
  3. if(userId){
  4. var userProperties = {
  5. 'joined': '04/15/2015',
  6. 'plan': 'Monthly', // options are Monthly, Yearly, Trial
  7. 'payment amount': , // options are 0, 19, 149 (maybe others?)
  8. 'username': 'jpetey7',
  9. 'email': 'jakedpete@gmail.com',
  10. 'first name': 'Jake',
  11. 'last name': 'Peterson',
  12. 'user type': 'Enthusiast' // options are Enthusiast, Teacher, Teacher in Training
  13. }
  14. amplitude.getInstance().setUserId('USER_ID_HERE');
  15. amplitude.getInstance().setUserProperties(userProperties);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement