Skip to main content
JavaScript
Smile.fetchAllCustomerPointsProducts().then(
  (pointsProducts) => {
    // Handle the customer points products
    // collection
  }
);
This method is deprecated. Specify includeSdk: true when initializing Smile UI, and then use the Smile.customerPointsProducts.get() method from the JavaScript SDK instead.
This method retrieve a list of available redemption options for the currently logged-in customer.

Returns

This method returns a Promise that:
  • On success, resolves with an array of customer points product objects. If no points products are defined, the array will be empty.
  • On failure, resolves with an error object.
If the method is improperly invoked (e.g. invalid parameters) or no customer is currently logged-in, the Promise will be rejected.