Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Subscribe to the "Back in Stock" trigger
Method Objective
The method subscribes the user to an email notification that the product is available.
Syntax and parameters
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_trigger", "product_available", params); |
Name | Type | Requirement | Description |
---|---|---|---|
params | Object | required | Object with request parameters. |
Request parameters
Name | Type | Requirement | Description |
---|---|---|---|
iditem | number/string | required | The product ID to notify of the product availability the user will be subscribed. |
string | required | The current user's Email. | |
properties | Object | optionally | Additional product properties. The following are available:
|
Example of use
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_trigger", "product_available", { iditem: "100500", email: "john.doe@examplestore.com", properties: { fashion_size: "XL" } }); |
Subscribe to the "Price Drop" trigger
Method Objective
The method subscribes the user to an email notification of a product price decrease.
Syntax and parameters
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_trigger", "product_price_decrease", params); |
Name | Type | Requirement | Description |
---|---|---|---|
params | Object | required | Object with request parameters. |
Request parameters
Name | Type | Requirement | Description |
---|---|---|---|
iditem | number/string | required | The product ID to notify of the product price drop the user will be subscribed. |
price | number | required | The current product price. |
string | required | The current user's Email. | |
properties | Object | optionally | Additional product properties. The following are available:
|
Example of use
Code Block | ||||
---|---|---|---|---|
| ||||
personaclick("subscribe_trigger", "product_price_decrease", { iditem: "100500", price: 146.55, email: "john.doe@examplestore.com", properties: { fashion_size: "XL" } }); |
Table of Contents | ||||
---|---|---|---|---|
|