Versions Compared
Version | Old Version 1 | New Version 2 |
---|---|---|
Changes made by | ||
Saved on |
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Method Objective
The method subscribes allows changing the status of the current user's subscriptions to an email notification that the product is availablenotification channels.
Syntax and parameters
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_triggersubscription", "product_availablemanage", params); |
Name | Type | Requirement | Description |
---|---|---|---|
params | Object | required | Object with request parameters. |
Request parameters
Name | Type | Requirement | Description | item|
---|---|---|---|---|
string | requiredoptionally | The | product ID to notify of the product availability the user will be subscribed.emailcurrent user's Email. | |
phone | string | requiredoptionally | The current user's Email. | |
properties | Object | optionally | Additional product properties. The following are available:
|
Phone. | |||
email_bulk | boolean | optionally | It changes the current user's subscription status to bulk email campaigns. |
email_chain | boolean | optionally | It changes the current user's subscription status to triggered email campaigns. |
email_transactional | boolean | optionally | It changes the current user's subscription status for transactional email campaigns. |
sms_bulk | boolean | optionally | It changes the current user's subscription status to bulk SMS campaigns. |
sms_chain | boolean | optionally | It changes the current user's subscription status to triggered SMS campaigns. |
sms_transactional | boolean | optionally | It changes the current user's subscription status for transactional SMS campaigns. |
Examples of use
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_triggersubscription", "product_availablemanage", { email: "john.doe@examplestore.com", phone: "+100000000000", email_bulk: true, email_chain: true, email_transactional: true, sms_bulk: true, sms_chain: true, item: "100500sms_transactional: true }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscription", "manage", { email: "john.doe@examplestore.com", email_bulk: true, email_chain: false, properties: {email_transactional: true, }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscription", "manage", { phone: "+100000000000", sms_bulk: false, fashion_size: "XL" sms_chain: false, sms_transactional: true }); |
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscription", "manage", { }email_transactional: true, sms_transactional: true }); |
Table of Contents | ||||
---|---|---|---|---|
|