Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PayPal show sandbox transactions

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

like image 985
Podelo Avatar asked Dec 03 '14 16:12

Podelo


People also ask

How do I view sandbox transactions?

On The developer dashboard (https://developer.squareup.com/apps) you can see the sandbox test accounts, there is an open button next to the account, click on it and it will open the sandbox dashboard, there you can see the sandbox transactions.


1 Answers

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):

  1. Go to https://www.sandbox.paypal.com, and logging into the account with the sandbox account's email address and password
  2. Go to 'Recurring payments dashboard' using this shortcut link: https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_merchant-hub

This can be also used for REST API billing agreements as well

like image 170
vandershraaf Avatar answered Oct 21 '22 20:10

vandershraaf