Ramadoka
Ramadoka

Reputation: 364

how can I get list of the users data in google play subscriptions

Our app has already implemented in-app purchase.

But, we previously don't keep track of it, and only relies on the google's service whether a user's level is premium or regular.

Now, we want to track it in our server as well.

Is it possible to get the users data who've bought our subscriptions? (especially his/her email)

Upvotes: 2

Views: 3141

Answers (1)

Teyam
Teyam

Reputation: 8112

Based from the following documentations, there is no currently existing method to get a list of your app's subscriber's.

Currently existing features with Google Play Developer API is that, it offers an HTTP-based API that lets you perform such tasks as:

  • Remotely query the validity of a specific subscription at any time
  • Cancel a subscription
  • Defer a subscription's next billing date
  • Refund a subscription payment without canceling the subscription
  • Refund and revoke a subscription

The API is designed to be used from your backend servers as a way of securely managing subscriptions, as well as extending and integrating subscriptions with other services.

For complete information, you may go through Google Play Developer API.

Upvotes: 2

Related Questions