Integrate Multibanco using the JavaScript SDK
Last updated: Feb 18th, 10:44pm
Merchants can use PayPal-hosted UI components, called payment fields, to collect payment information for alternative payment methods.
Know before you code
- Request approval to enable Multibanco by visiting these sandbox and live links:
- Sandbox: https://www.sandbox.paypal.com/bizsignup/entry?product=multibanco&capabilities=MULTIBANCO&country.x=<merchant's country>
- Live: https://www.paypal.com/bizsignup/add-product?product=multibanco&capabilities=MULTIBANCO&country.x=<merchant's country>
- Partners: Be sure to onboard your merchants upfront, before they accept payments. Onboarding after making payments, specifically Progressive Onboarding, isn't supported for alternative payment methods.
- Complete the steps in Get started to get your sandbox account information from the Developer Dashboard:
- Client ID: Authenticates your account with PayPal and identifies an app in your sandbox.
- Client Secret: Authorizes an app in your sandbox. Keep this secret safe and don't share it.
- Business account credentials.
- Make sure the preference for receiving payments in your PayPal business account is set to accept and convert them to the default currency. To verify, in your profile select Account Settings > Payment preferences > Block payments and select Update to mark this preference.
- This client-side and server-side integration uses the following:
- Make sure you're subscribed to the following webhook events:
- Listen for the
CHECKOUT.ORDER.APPROVED
webhook in order to retrieve order details. - Listen for the
PAYMENT.CAPTURE.PENDING
,PAYMENT.CAPTURE.COMPLETED
, andPAYMENT.CAPTURE.DENIED
webhooks, which indicate payment capture status.
- Listen for the
- By adding funding sources to your checkout integration, you agree to the PayPal alternative payment methods agreement. This is in addition to the user agreement applicable to the country in which your business is physically located.
To get started
Run in Postman
Use Postman to explore and test PayPal APIs. Learn more in our Postman guide.
Get up and running in GitHub Codespaces
GitHub Codespaces are cloud-based development environments where you can code and test your PayPal integrations. Learn more.
Add PayPal JavaScript SDK
Add or update the JavaScript SDK script on your web page.
1<script src="https://www.paypal.com/sdk/js?client-id=YOUR_CLIENT_ID&components=buttons,payment-fields,marks,funding-eligibility&enable-funding=multibanco¤cy=EUR">2</script>
This table lists the parameters you pass to the JavaScript SDK.
Query param | Default | Description |
client-id |
none | Your PayPal REST client ID. This identifies your PayPal account and determines where transactions are paid. |
components |
buttons |
A comma-separated list of components to enable. The buttons , payment-fields , marks , and funding-eligibility components are required for payment fields components. |
enable-funding |
none | The enabled payment methods to show in buttons and marks. Note: By default, PayPal JavaScript SDK provides smart logic to display only appropriate marks and buttons for the current buyer. This optional parameter bypasses the buyer country check for desired payment methods. For example: src= https://www.paypal.com/sdk/js?client-id=YOUR_CLIENT_ID&enable-funding=venmo
|
currency |
USD |
This is the currency for the payment. This value needs to match the currency used when creating the order. |
locale |
automatic | The locale renders components. By default PayPal detects the correct locale for the buyer based on their geolocation and browser preferences. It is recommended to pass this parameter with a supported locale if you need the PayPal buttons to render in the same language as the rest of your site. |
intent |
capture |
The intent for the transaction. This determines whether the funds are captured immediately while the buyer is present on the page. |
commit |
true |
This indicates that the final amount won't change after the buyer returns to your site from PayPal. |
vault |
false |
Whether the payment information in the transaction will be saved. Save your customers' payment information for billing agreements, subscriptions, or recurring payments. Marking this parameter false shows all funding sources, including payment methods that can't be saved. |
See additional, optional parameters.
Render payment mark
You can use a mark integration for payment fields components to present the payment method options to the buyer as radio buttons.
1paypal.Marks({2 fundingSource: paypal.FUNDING.MULTIBANCO3}).render('#multibanco-mark')
Render payment fields
Payment fields offer easy integration to collect payment information from buyers. Fields dynamically render based on the selected funding source and you can customize the fields to align with your brand.
The MULTIBANCO payment fields collect first name and last name.
If there are validation errors in the input fields, they'll show on the click of the button.
1paypal.PaymentFields({2 fundingSource: paypal.FUNDING.MULTIBANCO,3 /* style object (optional) */4 style: {5 /* customize field attributes (optional) */6 variables: {},7 /* set custom rules to apply to fields classes (optional) */8 rules: {},9 },10 fields: {11 /* fields prefill info (optional) */12 name: {13 value: "John Doe",14 },15 }16})17.render("#multibanco-container");
For style
parameters, please reference this style page: Custom style for payment fields
Use paypal.Buttons().isEligible()
to check if the funding source is eligible.
1var mark = paypal.Marks({2 fundingSource: paypal.FUNDING.MULTIBANCO3})4var fields = paypal.PaymentFields({5 fundingSource: paypal.FUNDING.MULTIBANCO,6})7var button = paypal.Buttons({8 fundingSource: paypal.FUNDING.MULTIBANCO9})1011if(button.isEligible()) {12 mark.render('#multibanco-mark');13 fields.render("#multibanco-container");14 button.render("#multibanco-btn");15}
createOrder
Implement the
createOrder
function to allow the JavaScript SDK to submit buyer information and set up the transaction on the click of the button.Note: Create Bancontact orders in EUR currency.Use your server-side Create order call to set up the details of a one-time transaction including the amount, line item detail, and more.
If order creation fails, the Orders API returns an error in the console.
After order creation, orders are confirmed with the buyer-selected payment source. If the order cannot be processed with the selected payment source, relevant errors are returned in the console.
onCancel
Implement the optional
onCancel()
function to show a cancellation page or return to the shopping cart.onError
Implement the optional
onError()
function to handle errors and display generic error message or page to the buyers. This error handler is a catch-all. Errors at this point are not expected to be handled beyond showing a generic error message or page.
Handle webhook events
A webhook handler is a script you create on your server that completes specific actions on webhooks that hit your listener URL.
CHECKOUT.ORDER.APPROVED
- Listen for this webhook to retrieve order details, including theBARCODE_URL
for the voucher. Use this URL to send the voucher in emails or to display it again. Order capture is performed automatically. No additional code required.PAYMENT.CAPTURE.PENDING
- The funds for this payment were not yet credited to the payee's PayPal account. The buyer has not yet completed the transaction.PAYMENT.CAPTURE.COMPLETED
- The funds for this payment were credited to the payee's PayPal account. The buyer completed the transaction and goods can be delivered.PAYMENT.CAPTURE.DENIED
- The funds could not be captured. The buyer did not complete the transaction before the voucher's expiration.
See Subscribe to checkout webhooks for more information.
Here are some additional resources as you create webhook handler code:
- Webhook Management API - Manage webhooks, list event notifications, and more.
- Webhook events
- Checkout webhook events - Checkout buyer approval-related webhooks.
- Order webhook events - Other order-related webhooks.
- Show order details endpoint - Determine the status of an order.