Show cancellation page
Last updated: Oct 25th, 10:40am
Show a page to your payers to confirm that the payment was cancelled.
Know before you code
Advanced Checkout
Complete the steps in Get started to get your sandbox account login information and access token from the Developer Dashboard.
This feature modifies an existing advanced Checkout integration and uses the following:
- JavaScript SDK: Adds PayPal-supported payment methods.
- Orders REST API: Create, update, retrieve, authorize, and capture orders.
Explore PayPal APIs with Postman
You can use Postman to explore and test PayPal APIs. Learn more in our Postman guide.
Display a cancellation page
Add the onCancel
function to the JavaScript that renders the PayPal buttons to show a cancellation page when a payer cancels a payment:
1paypal.Buttons({2 onCancel: function(data) {3 // Show a cancel page or return to cart4 }5}).render('#paypal-button-container');