Skip to main content
JavaScript
Smile.rewardFulfillments.get().then(
  (rewardFulfillments) => {
    // Handle the reward fulfillments collection
  }
);
This async method retrieves a list of all the reward fulfillments belonging to the currently logged-in customer. This method always makes an API call to fetch the latest data.
For the best performance, we suggest preloading reward fulfillments and then using the Smile.rewardFulfillments.preloaded() method.

Returns

This method returns a Promise that: If the method is improperly invoked (e.g. no customer currently logged in), the Promise will be rejected.