How to get Google Play Store Subscriptions History - google-play-services

Is there any other way to get user subscriptions history (Detailed transactions) ?
Any help would be greatly appreciated
no API that returns detailed transactions of all subscription.

Related

How soon can i retrieve transactions after a successful addSiteAccount1 call?

Let's say i have successfully added a user using addSiteAccount1. How long do i have to wait in order to begin retrieving the user's transactions using executeUserSearchRequest?
Is there any other way way to retrieve the transactions other than using executeUserSearchRequest?
Usually it takes around 2-5 seconds.
Yes you can have a look at our Yodlee APIs which was recently out and you can retrieve transactions even from that. Following are the details:
Yodlee API: https://developer.yodlee.com/Yodlee_API
For getting Transactions:https://developer.yodlee.com/apidocs/index.php#!/transactions/getTransactions
Endpoint: GET /{cobrandName}/v1/transactions
API: Get Transactions
Hope that helps.
Regards,
Krithik

Youtube Analytics API: Get Earnings report for individual channel which are not part of the content owner

I want to get the earnings related report for the individual channels which are not the part of Content Owner. But when I am adding the earnings related metrics, I am getting 401 - Insufficient permission to access this report. When removing the earnings metrics, it is working fine. I searched a lot for this and found out that, we can not fetch the earnings for individual channels which are not part of content owner but the result I get is of 2 years old. Is there any update regarding this? Or any other method, through which I can fetch the earnings related report for individual channels?
Please help me.
Thanks in advance
You should get a https://www.googleapis.com/auth/yt-analytics-monetary.readonly
scope,before accessing monetary (earnings) report.
You'll also need the client to give you an access token. From there you can get an access token and json_decode to get the refresh token which you can store in a database for offline use. Also set access type to offline.

Running balance amount from Paypal API

I would like to get the running balance of my PayPal account after each and every transaction.
I'm getting the same from the portal in a nice report format under "balance" column.
But I get no running balance when I'm using "TransactionSearch" and "GetTransactionDetails".
There is an API name "GetBalance", but it gives me the total balance which is what I don't required.
It would be really appreciated if you please help me getting this running balance after each and every transaction using the above two APIs.
Thanks much,
Arnab
The closest API to what you are looking for would be the GetBalance API. This should be the same balance that you see available in your PayPal account.

subscription payment processing

Looking for some advice on which service to use to implement the following on my site:
I would like to sell 4 levels of subscriptions each to be billed on a monthly basis
The customer should be able to cancel their subscription at any time
The customer should be able to upgrade and downgrade their subscription at any time
I would like to keep the cost down until I have enough subscribers.
I have looked at Paypal but could not figure out how I can do requirements #3. Posting to their community forums yielded no response.
I am also located in Canada which seems to limit the options available to me.
I am currently looking at www.preedly.com and www.chargify.com but they seem to require a merchant account so I'd end up paying 2 service providers.
My site is written in PHP so a PHP-friendly solution is needed.
One last thing, I could not find a way to get Paypal to tell me the new subscription expiry date (following the successful processing of a transation) in order for me to update my customer table and lock out those who have not paid.
You may want to look into gettings a US based merchant account (I used to work for a merchant account provider and we were able to successfully establish merchant account for Canadian businesses. IIRC it required some hoops to be jumped through, though). If you can get a US merchant account you then can use Authorize.Net's Automated Recurring Billg (ARB) API. It allows you to create subscriptions and modify them accordingly (upadting and deleting).

Getting ARB subscription information from Authorize.net using Active Merchant?

I'm trying to write a test to verify the start date and interval of an Authorize.net ARB subscription created via Rails + Active Merchant.
I can successfully create the sub using response = GATEWAY.recurring(...) and a I get a success code.
After the subscription is created, however, as far as I can see from the Active Merchant documentation I can't really request any info, like the start date for instance.
The only methods available for ARB are:
cancel_recurring recurring update_recurring
Am I missing something obvious?
The ARB API offers very limited reporting functionality. In fact all you can get through that API is the status of a subscription (ARBGetSubscriptionStatusRequest). The only other options available to you are to create (ARBCreateSubscriptionRequest), update (ARBUpdateSubscriptionRequest), and delete (ARBCancelSubscriptionRequest). This is not a RoR limitation. This is an API limitation. You can confirm this in the ARB Guide.
So, any information you want to keep track of related to a subscription (start date, end date, amount, etc) will need to be recorded by you in your database.
Authorize.Net does have a new Transaction Detail API which they are consistently enhancing. But as of right now it does not report the kind of information you are looking for.