Boleto Bancário

DocsBetaLast updated: August 18th 2024, @ 11:09:25 am


Boleto logo

Boleto Bancário, simply referred to as Boleto, is a payment method in Brazil.

CountriesPayment typePayment flowCurrenciesMaximum amountRefunds
Brazil (BR)voucherredirectBRL35,000N/A

How it works

Checkout flow

Alternative payment methods diagram

  1. Buyer chooses to pay with Boleto.
  2. Buyer provides their first name, last name, email, tax info and billing address.
  3. The payment voucher is presented to the buyer.
  4. Buyer can either print the Boleto and pay cash in bank/post office or pay the Boleto via online banking.
  5. Merchant receives the successful payment completion webhook notification and PayPal moves the funds to the merchant account.
  6. Merchant ships the goods.

Eligibility

  • Available to merchants in Brazil only.
  • Billing agreements, multiple seller payments, and shipping callback aren't supported.
  • Only supports order capture. Doesn't support order authorization. See Payments webhooks.
  • Chargebacks aren't supported.
  1. JS SDK
  2. Orders API

Buyer experience

Know before you code

Note: The integration steps for implementing alternative payment methods are similar. If you've integrated another alternative payment method before, you can likely reuse that code with adjustments for this payment method.
  • 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, and PAYMENT.CAPTURE.DENIED webhooks, which indicate payment capture status.
  • Request approval to enable this payment method by visiting these Sandbox and Live links. Replace MERCHANT-COUNTRY in the URL with the 2-character country code for the merchant's country of operation. Replace PRODUCT and CAPABILITY with the corresponding payment method:
    • Sandbox: https://www.sandbox.paypal.com/bizsignup/entry?product=PRODUCT&capabilities=CAPABILITY&country.x=MERCHANT-COUNTRY
    • Live: https://www.paypal.com/bizsignup/entry?product=PRODUCT&capabilities=CAPABILITY&country.x=MERCHANT-COUNTRY

  • Use Postman to explore and test PayPal APIs.

1. Add PayPal JavaScript SDK

Add or update the JavaScript SDK script on your web page.

<script src="https://www.paypal.com/sdk/js?client-id=YOUR_CLIENT_ID&components=buttons,payment-fields,marks,funding-eligibility&enable-funding=boletobancario&currency=BRL"></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.

2. 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.

paypal
  .Marks({
    fundingSource: paypal.FUNDING.BOLETOBANCARIO,
  })
  .render('#boleto-mark')

3. 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 Boleto payment fields collect first name, last name, billing address, tax info, and email.

If there are validation errors in the input fields, they'll show on the click of the button.

paypal
  .PaymentFields({
    fundingSource: paypal.FUNDING.BOLETOBANCARIO,
    /* style object (optional) */
    style: {
      /* customize field attributes (optional) */
      variables: {},
      /* set custom rules to apply to fields classes (optional) */
      rules: {},
    },
    fields: {
      /* fields prefill info (optional) */
      name: {
        value: 'John Doe',
      },
      email: {
        value: 'jdoe@example.com',
      },
      taxId: {
        value: '71265469000109',
      },
      addressLine1: {
        value: '1048 - Bela Vista',
      },
      city: {
        value: 'São Paulo',
      },
      state: {
        value: 'SP',
      },
      postalCode: {
        value: '01310-100',
      },
    },
  })
  .render('#boleto-container')

For style parameters, please reference this style page: Custom style for payment fields

4. Render payment button

paypal
  .Buttons({
    fundingSource: paypal.FUNDING.BOLETOBANCARIO,
    style: {
      label: 'pay',
    },
    createOrder() {
      return fetch("/my-server/create-paypal-order", {
        method: "post",
        // use the "body" param to optionally pass additional order information
        // like product skus and quantities
        body: JSON.stringify({
         cart: [
         {
            sku: "YOUR_PRODUCT_STOCK_KEEPING_UNIT",
            quantity: "YOUR_PRODUCT_QUANTITY",
          },
          ],
        }),
      })
      .then((response) => response.json())
      .then((order) => order.id);
    },
    onApprove(data) {
      return fetch("/my-server/capture-paypal-order", {
        method: "post",
        body: JSON.stringify({
        orderID: data.orderID
      })
      })
      .then((response) => response.json())
      .then((orderData) => {
        // Successful capture! For dev/demo purposes:
        console.log('Capture result', orderData, JSON.stringify(orderData, null, 2));
        const transaction = orderData.purchase_units[0].payments.captures[0];
        console.log('Transaction Status:',  transaction.status);
        console.log('Transaction ID:', transaction.id);
        // When ready to go live, remove the alert and show a success message within this page. For example:
        // const element = document.getElementById('paypal-button-container');
        // element.innerHTML = '<h3>Thank you for your payment!</h3>';
        // Or go to another URL:  window.location.href = 'thank_you.html';
      });
    },
    onCancel(data, actions) {
      /* Incomplete checkout. Buyer closed the window before order confirmation. */
      /* Show a message to restart the checkout process. */
      console.log(`Order Canceled - ID: ${data.orderID}`)
    },
    onError(err) {
      console.error(err)
    },
  })
  .render('#boleto-btn')

Use paypal.Buttons().isEligible() to check if the funding source is eligible.

var mark = paypal.Marks({
  fundingSource: paypal.FUNDING.BOLETOBANCARIO,
})
var fields = paypal.PaymentFields({
  fundingSource: paypal.FUNDING.BOLETOBANCARIO,
})
var button = paypal.Buttons({
  fundingSource: paypal.FUNDING.BOLETOBANCARIO,
})

if (button.isEligible()) {
  mark.render('#boleto-mark')
  fields.render('#boleto-container')
  button.render('#boleto-btn')
}

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: Boleto requires orders to be created in a currency of BRL.

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 can return an error in the console.

After order creation, orders are confirmed with buyer-selected payment source. If the order cannot be processed with the selected payment source, the 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 aren't expected to be handled beyond showing a generic error message or page.

5. 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 the BARCODE_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:

Sample integration

See a sample Boleto integration in the PayPal GitHub repository.

Next steps