We are using PayPal Website Payments Standard to accept payments on an online store we have implemented. Right now when we send customers off to PayPal to pay we assume that they have abandoned their orders until we get an IPN response from PayPal telling us differently. Is there a better way to do this? Many of of our store managers aren't tech savvy, and so when they see new orders marked as "abandoned" they get nervous. Looking through PayPal's IPN documentation it doesn't look like there is a notification for abandoned carts. The only other way I could think to do this would be to initially mark an order as pending and then have some kind of service that runs periodically to mark orders as abandoned. Maybe if we haven't received a Paypal IPN notification for the order in over 24 hours or something? Has anybody else tried this? Or does anybody else have other ideas for how to do this? I haven't been able to find in PayPal's documentation any kind of expiration time for a payment request.

EDIT

Our store uses ASP.Net WebForms running on IIS 7.0 with a SQL Server database.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
+50

PayPal does not have any notification that would be triggered by interrupted checkout. From what I've seen in few carts they use "Pending" or "Awaiting confirmation" status while awaiting IPN.

IPN (as it's payment notificaiton) is triggered by payment related events only. If the cart gets abandoned, there payment will not have been made so there is nothing to notify about.

There is no reliable mechanism to get abandonment data.

If you're using PayPal Express Checkout, token life is 3 hours (unless changed on request), so it's safe to mark a payment "abandoned" after this time.

link|improve this answer
That's good to know. I'd looked through the documentation for a shelf life of a payment request but hadn't been able to find one. I was hoping the IPN would automatically send an abandoned notification when the token time expired. Do you know what the timeout is for a standard Website Payments Standard purchase request? – Mark Rucker Jan 18 at 16:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.