MB Way
Intro
MB Way is a Portuguese wallet allowing customers to pay with a pre-stored card on their mobile device. Once you redirect your customers to the MB Way portal, they confirm the payment with their phone number and a PIN.
The integration is very easy, as you only have to send two additional parameters along with your request. You can implement this payment method with integration mode Hosted Checkout Page.
Integration
Redirect your customers to the MB Way payment portal via our Hosted Checkout Page. Find a high level overview in the "Zahlungsablauf" chapter.
Add the following properties to a standard CreateHostedCheckout request:
{
"redirectPaymentMethodSpecificInput": {
"paymentProductId": 5908,
"returnUrl": "https://yourReturnUrl.com",
"authorizationMode": "FINAL_AUTHORIZATION"
},
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 100
},
"customer": {
"contactDetails": {
"emailAddress": "wile.e.coyote@acmelabs.com",
"phoneNumber": "+1234567890"
}
}
}
}
Properties | Remarks |
---|---|
order.customer.contactDetails |
emailAddress: Your customer's e-mail address. phoneNumber: Your customer's phone number. |
order.amountOfMoney |
amount: The gross amount you want to charge for this order. |
redirectPaymentMethodSpecificInput |
paymentProductId: The numeric identifier of the payment method on our platform. Find this id in the "Überblick" tab. It instructs our platform to send your customers directly to the MB Way portal. If left out, our platform sends your customers to the Hosted Checkout Page instead, allowing them to choose this or any other payment method in your account. authorizationMode: Set to either "FINAL_AUTHORIZATION"/"SALE" depending on whether you want to process payments in authorisation/direct sale mode. returnUrl: The URL we redirect your customers to after the payment has been finalised. |
Ausführliche Informationen über dieses Objekt und seine Eigenschaften finden Sie in unserer CreateHostedCheckoutAPI
Zahlungsablauf
- Your customers finalise an order on their desktop device in your shop and select MB Way.
- You send this CreateHostedCheckout request to our platform.
- You redirect your customers via the redirectUrl to the MB Way portal. They enter their phone number on the MB Way portal.
- Your customers’ mobile device opens the MB Way app. Your customers confirm the payment in the app using their PIN.
- We receive the transaction result.
- Your customers' mobile device opens conform the payment in the MB Way app. We redirect your customers to your returnURL on their desktop device.
- You request the transaction result from our platform via GetHostedCheckout or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods / service.
Testdaten
In unseren Testszenarios finden Sie Testdaten und detaillierte Instruktionen.
Stellen Sie sicher, den korrekten Endpunkt anzusteuern und zurück zum Live-Endpunkt zu wechseln, sobald Sie Ihre Tests abgeschlossen haben