Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I count the number of automatic subscription renewals for Google Play Store App at given period of time?

I've got an app published on Google Play which has renewing in-app subscriptions. How do I measure the number of automatic renewals per given period of time for specific subscription and country (e.g. last day for weekly subscriptions in US)?

In iTunes Connect it's relatively simple - there is a number of renewals in "Sales in trends". In Google Play store I don't see any similar metric.

like image 858
DataGreed Avatar asked Oct 17 '17 11:10

DataGreed


People also ask

How do I manage subscriptions in Google Play app?

Go to play.google.com. At the top right, click your profile icon. Click Payments & subscriptions. Next to the subscription you want to update, click Manage.

Why there are so many pending Payments for subscription from Google Play console?

Please note that due to quarantine everywhere, including banks, transactions may take longer. Money just doesn't reach Google. You can enable the console. Grace period Up to 30 days.


1 Answers

I don't know about filters but you can get no of renewals by orderId's no after two dots.

Take a look at the randoms answer

Order id for all recurrences are returned in orderId field of the INAPP_PURCHASE_DATA JSON field (in V3) with each recurring transaction appended by an integer.

Subscription order numbers

To help you track transactions relating to a given subscription, Google payments provides a base Merchant Order Number for all recurrences of the subscription and denotes each recurring transaction by appending an integer as follows:

GPA.1234-5678-9012-34567 (base order number)

GPA.1234-5678-9012-34567..0 (first recurrence orderID)

GPA.1234-5678-9012-34567..1 (second recurrence orderID)

GPA.1234-5678-9012-34567..2 (third recurrence orderID) ...

like image 115
Kishan Vaishnav Avatar answered Jan 11 '23 22:01

Kishan Vaishnav