Manage Triggers (Android SDK - Java)

Subscribe to the "Back in Stock" trigger

Method Objective

The method subscribes the user to the notifications that the product is available.

Syntax and parameters

PersonaClick.subscribeForBackInStock(id, properties, email, phone);

Request parameters

NameTypeRequirementDescription
idstringrequiredThe product ID to notify of the product availability the user will be subscribed.
propertiesJSONObject/nulloptionally

Additional product properties. The following are available:

  • fashion_size (number/string) - clothing size (the value of the parameter in the internal format of the store)

Check the example below.

emailstring/nulloptionally

The current user's Email.

Must be "null" if using a phone number.

phonestring/nulloptionally

The current user's phone in full international format.

A phone number in full international format may begin with a plus sign (+) followed by the country code, city (area) code, and phone number.

Examples of use

PersonaClick.subscribeForBackInStock("100500");

PersonaClick.subscribeForBackInStock("100500", "john.doe@examplestore.com");

PersonaClick.subscribeForBackInStock("100500", null, "+4400114527199");

JSONObject properties = new JSONObject();
properties.put("fashion_size", "XL");
PersonaClick.subscribeForBackInStock("100500", properties, "john.doe@examplestore.com", null, null);



Unsubscribe from the "Back in Stock" trigger

Method Objective

The method unsubscribes the user from the notification that the product is available.

Syntax and parameters

PersonaClick.unsubscribeForBackInStock(params);

Request parameters

NameTypeRequirementDescription
paramsarrayrequiredArray with product IDs. See the example.

Examples of use

PersonaClick.unsubscribeForBackInStock(new String[] {"100500", "146", "12"});

PersonaClick.unsubscribeForBackInStock(new String[] {}); // unsubscribe from all products


Subscribe to the "Price Drop" trigger

Method Objective

The method subscribes the user to the notifications of a product price decrease.

Syntax and parameters

PersonaClick.subscribeForPriceDrop(id, currentPrice, email, phone);

Request parameters

NameTypeRequirementDescription
idstringrequiredThe product ID to notify of the product price drop the user will be subscribed.
currentPricenumberrequiredThe current product price.
emailstringoptionally

The current user's Email.

Must be "null" if using a phone number.

phonestringoptionally

The current user's phone in full international format.

A phone number in full international format may begin with a plus sign (+) followed by the country code, city (area) code, and phone number.

Examples of use

PersonaClick.subscribeForPriceDrop("100500", 146.99);

PersonaClick.subscribeForPriceDrop("100500", 146.99, "john.doe@examplestore.com");

PersonaClick.subscribeForPriceDrop("100500", 146.99, null, "+4400114527199");


Unsubscribe from the "Price Drop" trigger

Method Objective

The method unsubscribes the user from an email notification of a product price decrease.

Syntax and parameters

PersonaClick.unsubscribeForPriceDrop(params);

Request parameters

NameTypeRequirementDescription
paramsarrayrequiredArray with product IDs. See the example.

Examples of use

PersonaClick.unsubscribeForPriceDrop(new String[] {"100500", "146", "12"});
PersonaClick.unsubscribeForPriceDrop(new String[] {}); // unsubscribe from all products

Copyright 2018-2024 PersonaClick