Eccommerce "Store credits" or "points"

Does anyone have any experience or thoughts on building “points” systems for users as a loyalty initiative?

I have an e-commerce platform where I want every cent spent by a user adds up to a point in their profile.

I saw a few posts about this but was wondering if there’s a really simple way as this is just an MVP

Thank you so much

i think you can do it in this steps

  1. add a new camp on the [user] Database it will be [Points],the type will be Number
  2. you gonna add a workflow that will pick the price of the things the user buy (how much they spent) and will multiply 100x
    Example - i am buying something that costs 10 dollars, 10 dollars x 100 = 1000 points - one point per cent
  3. the next step of the workflow is make changes to a thing - Current user
    what’s gonna change? [Points]
    [Points] = Current user’s [Points] + “Previous step result”

i think this is gonna work

1 Like