3

I want to add 15 days to all my active subscription users for free.

for example if a user expiration date is 1 April, I want to change it to 15 April by API or from Google Play Console.

is it possible ?

user16930239
  • 6,319
  • 2
  • 9
  • 33

2 Answers2

1

You can implement this functionality by using https://developer.android.com/google/play/billing/subscriptions#defer from the server side, assuming you store and know the information about active subscriptions

Beloo
  • 9,723
  • 7
  • 40
  • 71
0

Yes you can, if you already integrated in-app promotions in your app.

You can create promotion codes to give selected users an extended free trial to an existing subscription SKU.

Check out the documentation to know how to apply.

user16930239
  • 6,319
  • 2
  • 9
  • 33
  • 1
    Have you tried that? Seems it is not possible to extend an active subscription with promo codes. It is applicable only for a new subscription. The only way i have found is through deferring a billing period https://developer.android.com/google/play/billing/subscriptions#defer – Beloo Jul 21 '22 at 14:55