This feature modifies an existing PayPal Checkout integration and uses the following:
- JavaScript SDK: Adds PayPal-supported payment methods.
- Orders REST API: Create, update, retrieve, authorize, and capture orders.
Last updated: May 6th, 9:26pm
Display the funding source used to your buyers to provide a unique experience.
If you have a confirmation page or notification in your checkout workflow, display the payment source the payer selected.
For example, if the payer paid with Venmo, show Venmo as the payment source on the confirmation page or notification.
This feature modifies an existing PayPal Checkout integration and uses the following:
PayPal uses the following REST API credentials, which you can get from the developer dashboard:
You can use Postman to explore and test PayPal APIs. Learn more in our Postman guide.
Your Checkout experience might have a confirmation page or a notification to the user that they're paying with PayPal. Ensure the funding source the user chose, such as Venmo, shows as expected or it might lead to confusion and reduced Checkout conversion.
Use an onClick
handler to get the funding source and display it on a confirmation page.
1let fundingSource;23paypal.Buttons({4 onClick: (data) => {5 // fundingSource = "venmo"6 fundingSource = data.fundingSource;78 // Use this value to determine the funding source used to pay9 // Update your confirmation pages and notifications from "PayPal" to "Venmo"10 }11})
The following table shows supported fundingSource
values:
Funding source | Description |
---|---|
paypal.FUNDING.PAYPAL |
PayPal |
paypal.FUNDING.CARD |
Credit or debit cards |
paypal.FUNDING.PAYLATER |
Pay Later (US, UK), Pay in 4 (AU), 4X PayPal (France), Paga en 3 plazos (Spain), Paga in 3 rate (Italy), Später Bezahlen (Germany) |
paypal.FUNDING.CREDIT |
PayPal Credit |
paypal.FUNDING.VENMO |
Venmo |