PayPal Pay Later via Widget
Prerequisites
Before implementing PayPal Pay Later payments, ensure you have:
- Enabled PayPal Pay Later in the DEUNA Admin Panel.
- An generated order token.
- Integrated the DEUNA SDK in your project.
- Reviewed the Payment Widget documentation for your platform.
Payment Widget configuration
DeunaSDK.initPaymentWidget({
orderToken: '<YOUR_GENERATED_ORDER_TOKEN>',
paymentMethods: [
{
paymentMethod: 'bnpl',
processors: ['paypal_pay_later'],
},
],
callbacks: { ... },
});Updated about 9 hours ago