Hello,
We have a use-case:
- User is active subscriber on a monthly plan
- They trigger `redeem` functionality
- They get 1 month free from their subscription (meaning next month they are not getting billed, however month after that - they are getting billed again)
We know that via RevenueCat it’s possible to make if user is not a subscriber. However, would that work for subscriber’s case?
If it’s not possible - what would be recommended scenario for implementing this case? We would like to explore possibilities to give not only 1 month free, but also other various durations.
We were also thinking of this scenario:
- User is active subscriber on a monthly plan
- They trigger `redeem` functionality
- User sees `offer` page with `1 month free + regular monthly` billing
- They claim the offer
- User’s previous subscription period ends, their new subscription starts with 1month free
Would that work? Ideally - `entitlements` would make it much easier as we would not need to create any extra offers.
Best