Wero

Intro
Wero is a real-time banking payment method developed by the European Payment Initiative (EPI) consortium, replacing Giropay and soon Payconiq and iDEAL
Wero is linked to a bank account instead of a physical card. Thanks to the ever-growing network of participating banks, Wero covers 80% of the bank account holders in the targeted countries. Although Wero offers its own app, any banking app from any participating bank supports Wero.
You send a standard request to our platform to redirect your customers to the Wero portal to open the banking app.
The integration is very easy, as you only need to send a few additional properties along with your request.
Onboarding
To use Wero in our live environment, sign a contract with Wero.
We will be happy to get you started.
Integration
Redirect your customers to the Wero app/the banking app supporting Wero via integration modes Hosted Checkout Page or Server-to-server. Find a high level overview in the "Process flows" chapter.
Add the following properties to a standard CreateHostedCheckout/CreatePayment request:
{
"order":{
"amountOfMoney":{
"currencyCode":"EUR",
"amount":100
},
"references": {
"merchantReference": "Your Order ID"
"descriptor": "YourCompanyName"
}
},
"redirectPaymentMethodSpecificInput":{
"paymentProductId":900,
"requiresApproval": true,
"paymentProduct900SpecificInput": {
"captureTrigger": "Shipping",
}
},
}
Properties | Description |
---|---|
order.amountOfMoney |
amount: The gross amount you want to charge for this order. |
references |
merchantReference: Your unique reference to this order. Your unique reference to this order. If omitted, our platform will generate a random reference. descriptor: A dynamic descriptor appearing on your customers' bank statement. If omitted, our platform will generate a random descriptor. This value wil also be reused for refund requests. |
redirectPaymentMethodSpecificInput |
paymentProductId: The numeric identifier of the payment method on our platform. Find this id in the "Overview" chapter. For payments requested via CreateHostedCheckout, it instructs our platform to send your customers directly to the Wero portal. If omitted, our platform sends your customers to the Hosted Checkout Page instead, allowing them to choose this or any other payment method that is active in your account. requiresApproval: Set to either "true"/"false" depending on whether you want to process payments in authorisation/Direct Sale mode. If you choose "true", make sure to
captureTrigger: Mandatory only for requests in authorisation mode.
|
Find detailed information about this object and its properties in our CreateHostedCheckoutAPI/CreatePaymentAPI.
Process flows
Depending on your customers' device(s) used, differences apply:
With a desktop and a mobile device
- Your customers finalise an order on their desktop device in your shop and select Wero.
- You send this CreateHostedCheckout/CreatePayment request to our platform.
- You redirect your customers on the desktop device via the redirectUrl (For CreateHostedCheckout requests) or merchantAction.redirectData.redirectURL (For CreatePayment requests) to the Wero portal. Your customers scan the displayed QR code with their mobile/tablet device.
- The mobile/tablet device opens the Wero app/the banking app supporting Wero. Your customers confirm the payment in the app.
- We receive the transaction result.
- The mobile/tablet device displays the transaction result in the Wero app/the banking app supporting Wero. We redirect your customers to your returnUrl on their desktop device.
- You request the transaction result from our platform via GetPaymentDetails/GetHostedCheckout or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods / service.
With a mobile device
- Your customers finalise an order on their mobile device in your shop and select Wero.
- You send this CreateHostedCheckout/CreatePayment request to our platform.
- You redirect your customers via the redirectUrl (For CreateHostedCheckout requests) or merchantAction.redirectData.redirectUrl (For CreatePayment requests) to the Wero portal.
- Your customers confirm the payment in the app.
- We receive the transaction result.
- The mobile/tablet device displays the transaction result in the Wero app/the banking app supporting Wero.
- You request the transaction result from our platform via GetPaymentDetails/GetHostedCheckout or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods / service.
Testing
Refer to our Test cases for test data and detailed instructions.
Make sure to use the right endpoint and switch back to the live URL as soon as you have finished your tests.
Additional information
Refund payments
When processing refunds, make sure to add property refundReason to your request:
{
"amountOfMoney":{
"currencyCode":"EUR",
"amount":100
},
"references": {
"merchantReference": "Your-refund-reference"
}
},
"refundRedirectMethodSpecificInput":{
"refundRedirectPaymentProduct900SpecificInput":{
"refundReason": "ReturnedGoods"
}
},
}
Properties | Description |
---|---|
order.amountOfMoney |
The gross amount you want to refund for the original authorisation. |
references.merchantReference |
Your unique reference to this refund. If omitted, our platform will send the one from the original CreateHostedCheckout/CreatePayment request. |
refundRedirectMethodSpecificInput. |
The reason for the refund. Possible values:
|