worldline Direct
Sign up

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.

Überblick

Kategorie:
Payment Product-ID:
5908

Länder & Währungen

Unterstützte Länder

Unterstützte Währungen

  • Euro

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
    phoneNumber

emailAddress: Your customer's e-mail address.

phoneNumber: Your customer's phone number.

order.amountOfMoney
     amount
     currencyCode

amount: The gross amount you want to charge for this order.
currencyCode: The ISO 4217 currency code for this amount.

redirectPaymentMethodSpecificInput
     paymentProductId
     authorizationMode
     returnUrl
     

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

  1. Your customers finalise an order on their desktop device in your shop and select MB Way.
  2. You send this CreateHostedCheckout request to our platform.
  3. You redirect your customers via the redirectUrl to the MB Way portal. They enter their phone number on the MB Way portal.
  4. Your customers’ mobile device opens the MB Way app. Your customers confirm the payment in the app using their PIN.
  5. We receive the transaction result.
  6. Your customers' mobile device opens conform the payment in the MB Way app. We redirect your customers to your returnURL on their desktop device.
  7. You request the transaction result from our platform via GetHostedCheckout or receive the result via webhooks.
  8. 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

Was this page helpful?

Do you have any comments?

Thank you for your response.