worldline Direct
Sign up

Multibanco

Intro

Multibanco is a payment method available in Portugal for physical payments as a post-pay voucher.
On the Thunes payment portal, you customers receive all information to make the actual payment by either credit card or cash:
  • Payment location (ATM of Multibanco network)
  • Payment reference
  • Amount
  • Payment period (start and end date)
The integration is very easy, as you need to send only two additional parameters along with your request. Learn all you need to know in the Integration and Zahlungsablauf chapter.

Überblick

Kategorie:
Payment Product-ID:
5500
Wichtigste Vorteile
  • Guaranteed payment
  • Low PCI requirements
  • Easy integration

Länder & Währungen

Unterstützte Länder

Unterstützte Währungen

  • Euro

Integration

Redirect your customers to the Thunes 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:

{
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 10000
},
"customer": {
"contactDetails": {
"emailAddress": "jean.dupont@test.com"
}
},
"references": {
"merchantReference": "mr_{{TIMESTAMP}}"
}
},
"hostedCheckoutSpecificInput": {
"locale": "pt_PT"
},
"redirectPaymentMethodSpecificInput": {
"paymentProductId": 5500
}
}
Properties Remarks

order.customer.contactDetails.emailAddress

Your customer’s e-mail address.

redirectPaymentMethodSpecificInput.paymentProductId

The numeric identifier of the payment method on our platform. Find this id in the "Überblick" chapter. It instructs our platform to send your customers directly to the Thunes 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.

Ausführliche Informationen über dieses Objekt und seine Eigenschaften finden Sie in unserer CreateHostedCheckoutAPI

Zahlungsablauf

  1. Your customers finalise an order in your shop and select Multibanco.
  2. You send this CreateHostedCheckout request to our platform.
  3. You redirect your customers to the Thunes portal via the redirectUrl. It provides all necessary information to your customers to make the actual payment at a later point (step 6).
  4. We receive the intermediate transaction result (statusOutput.statusCode=51)
  5. We redirect your customer to your returnUrl
  6. You request the intermediate transaction result (statusOutput.statusCode=51) from our platform via GetHostedCheckout or receive the result via webhooks.
  7. Within the predefined period, your customers make the actual payment at an ATM of Multibanco network by either credit card or cash.
  8. Multibanco confirms the receipt of payment to us. We update the transaction to statusOutput.statusCode=5
  9. You request the final transaction result (statusOutput.statusCode=5) from our platform via GetPaymentDetails/GetHostedCheckout or receive the result via webhooks.
  10. If the transaction was successful, you can deliver the goods / services.
  • The predefined payment period is 2 – 3 days. You can adapt the duration by consulting Thunes.
  • Only send the goods/services after we have updated the transaction to StatusCode=5. Use our webhooks or a GetPayment request to get the current status in realtime.
  • If Multibanco does not confirm the receipt of payment within the predefined period, we update the transaction to StatusCode=2
Multibanco-flow.png

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.