SDK Methods
Manually Triggering the Opt-In Prompt
pushly('show_prompt', { checkEligibility: true })pushly('show_prompt')Adding Attributes to a Subscriber's Profile
pushly('profile', {
'is_paying_subscriber': true,
'interests': ['poltics', 'news']
});// add 'sports' to the subscriber's interests
pushly('profile_append', {
'interests': ['sports']
});
// remove 'fashion' and 'news' from the subscriber's interests
pushly('profile_remove', {
'interests': ['fashion', 'news']
});Adding Page Keywords / Tags to a Subscriber's Profile
Retrieving the Subscriber's User ID
Setting the Subscriber's External ID
On SDK Init
Via a separate method call
Removing a Subscriber's External ID
Determining if a Visitor is Already Subscribed
Determining if a Visitor is Eligible to Prompt
Suppressing & Allowing Prompts
Pausing / Resuming a User's Notifications (Soft Unsubscribe)
Permanently Delete a User
Last updated