Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Method Objective

The method allows changing the status of the current user's subscriptions to notification channels.

Syntax and parameters

Code Block
languagejs
themeFadeToGrey
PersonaClicksdk.manageSubscription(email, phone, external_id, loyalty_id, telegram_id, HashMap<String, Boolean>);

Request parameters

NameTypeRequirementDescription
emailstringoptionallyThe current user's Email.
phonestringoptionally

The current user's Phone.

external_idstringoptionallyStore side user ID.
loyalty_idstringoptionallyThe Loyalty Program user ID (loyalty card).
telegram_idstringoptionallyThe current user's Telegram ID.
HashMap<String, Boolean>HashMaprequiredSubscription Statuses. See the example below.

Available subscription statuses

NameTypeRequirementDescription
email_bulkbooleanoptionallyIt changes the current user's subscription status to bulk email campaigns.
email_chainbooleanoptionallyIt changes the current user's subscription status to triggered email campaigns.
email_transactionalbooleanoptionally

It changes the current user's subscription status for transactional email campaigns.

Note

It's recommended that always use the "true" value, even if you don't use transactional messages.


sms_bulkbooleanoptionallyIt changes the current user's subscription status to bulk SMS campaigns.
sms_chainbooleanoptionallyIt changes the current user's subscription status to triggered SMS campaigns.
sms_transactionalbooleanoptionally

It changes the current user's subscription status for transactional SMS campaigns.

Note

It's recommended that always use the "true" value, even if you don't use transactional messages.


web_push_bulkbooleanoptionallyIt changes the current user's subscription status to bulk webpush campaigns.
web_push_chainbooleanoptionallyIt changes the current user's subscription status to triggered webpush campaigns.
web_push_transactionalbooleanoptionally

It changes the current user's subscription status for transactional webpush campaigns.

Note

It's recommended that always use the "true" value, even if you don't use transactional messages.


mobile_push_bulkbooleanoptionallyIt changes the current user's subscription status to bulk app campaigns.
mobile_push_chainbooleanoptionallyIt changes the current user's subscription status to triggered app campaigns.
mobile_push_transactionalbooleanoptionally

It changes the current user's subscription status for transactional app campaigns.

Note

It's recommended that always use the "true" value, even if you don't use transactional messages.


Examples of use

Code Block
languagejs
themeFadeToGrey
HashMap<String,val Boolean> subscriptions = newHashMap<String, HashMap<>Boolean>();
subscriptions.put(["email_bulk",] = true);
subscriptions.put(["email_chain",] = true);
subscriptions.put(["email_transactional",] = true);
subscriptions.put(["sms_bulk",] = true);
subscriptions.put(["sms_chain",] = true);
subscriptions.put(["sms_transactional",] = true);
subscriptions.put(["web_push_bulk",] = true);
subscriptions.put(["web_push_chain",] = true);
subscriptions.put(["web_push_transactional",] = true);
subscriptions.put(["mobile_push_bulk",] = true);
subscriptions.put(["mobile_push_chain",] = true);
subscriptions.put(["mobile_push_transactional",] = true);
PersonaClicksdk.manageSubscription("john.doe@examplestore.com", "+100000000000", "100500", "12345-abcdf", 12345678, subscriptions);

Code Block
languagejs
themeFadeToGrey
HashMap<String,val Boolean> subscriptions = newHashMap<String, HashMap<>Boolean>();
subscriptions.put(["email_bulk",] = true);
subscriptions.put(["email_chain",] = false);
subscriptions.put(["email_transactional",] = true);
PersonaClicksdk.manageSubscription("john.doe@examplestore.com", null, null, null, null, subscriptions);

Code Block
languagejs
themeFadeToGrey
HashMap<String,val Boolean> subscriptions = newHashMap<String, HashMap<>Boolean>();
subscriptions.put(["sms_bulk",] = false);
subscriptions.put(["sms_chain",] = false);
subscriptions.put(["sms_transactional",] = true);
PersonaClicksdk.manageSubscription(null, "+100000000000", null, null, null, subscriptions);

Code Block
languagejs
themeFadeToGrey
HashMap<String,val Boolean> subscriptions = newHashMap<String, HashMap<>Boolean>();
subscriptions.put(["email_transactional",] = true);
subscriptions.put(["sms_transactional",] = true);
PersonaClicksdk.manageSubscription(null, null, null, null, null, subscriptions);



Column

Page Navigation

Table of Contents
maxLevel3
indent0px
stylenone




Related Pages

Filter by label (Content by label)
showLabelsfalse
showSpacefalse
sorttitle
cqllabel = "subscriptions"