SPEI OPM via Widget
Prerequisites
Before implementing Safetypay payments, ensure you have:
- Enabled SPEI OPM in the DEUNA Admin Panel.
- A generated order token.
- Integrated the DEUNA SDK in your project.
- Reviewed the Payment Widget documentation for your platform.
Payment Method configuration
Display the Payment Widget by passing the SPEIOPM configuration in the paymentMethods parameter.
[
{
"paymentMethod": "bank_transfer",
"processors": ["spei_opm"]
}
]Payment Widget - Web
DeunaSDK.initPaymentWidget({
orderToken: 'YOUR_ORDER_TOKEN',
paymentMethods: [
{
paymentMethod: 'bank_transfer',
processors: ['spei_opm'],
},
],
callbacks: { ... },
});Updated about 13 hours ago