Reputation: 386
I need to develop a monthly subscription system on my ASP.NET MVC 4 website. I m using the PayPal .NET SDK
To set up the subscription system, I created a billing plan and a billing agreement. I also created a PayPal sandbox account.
When I go in debug mode, everything works well, I m redirected to the PayPal sandbox website to accept the billing agreement, and then I back on my website to proceed to payment. The payment processing works without any error, but I don't know where I can get a trace of the fake transactions I made to verify if the payment process has really worked as expected.
Where can I find this information ?
Thanks
Upvotes: 6
Views: 11912
Reputation: 895
Besides the JasonZ's answer, you can actually get the list of all subscriptions/billing agreements by doing below (this is on the seller's account):
This can be also used for REST API billing agreements as well
Upvotes: 13
Reputation: 874
The REST API Test Transactions site (PayPal Developer Site > Dashboard > Transactions) should list all the recent transactions for your sandbox account.
Upvotes: 0