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 Process flows chapter.

Overview

Payment group:
Payment product id:
5500
Key benefits
  • Guaranteed payment
  • Low PCI requirements
  • Easy integration

Countries & currencies

Supported countries

Supported currencies

  • Euro (EUR)

Integration

Redirect your customers to the Thunes payment portal via our Hosted Checkout Page. Find a high level overview in the "Process flows" 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 "Overview" 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.

Find detailed information about this object and its properties in our CreateHostedCheckoutAPI.

Process flows

  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 GetPayment 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 GetPayment 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

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.

Was this page helpful?

Do you have any comments?

Thank you for your response.