You are viewing an old version of this page. View the current version.
Compare with Current View Page History
Version 1 Next »
The method subscribes the user to the notifications that the product is available.
PersonaClick.subscribeForBackInStock(id, email, phone);
The current user's Email.
Must be "null" if using a phone number.
PersonaClick.subscribeForBackInStock("100500");
PersonaClick.subscribeForBackInStock("100500", "john.doe@examplestore.com");
PersonaClick.subscribeForBackInStock("100500", null, "4400114527199");
The method subscribes the user to the notifications of a product price decrease.
PersonaClick.subscribeForPriceDrop(id, currentPrice, email, phone);
PersonaClick.subscribeForPriceDrop("100500", 146.99);
PersonaClick.subscribeForPriceDrop("100500", 146.99, "john.doe@examplestore.com");
PersonaClick.subscribeForPriceDrop("100500", 146.99, null, "4400114527199");
Page Navigation
Related Pages