Configure the integration with other payment methods
With Mercado Pago's Checkout Bricks, it is possible to offer, in addition to card, payments via Rapipago and Pago Fácil. To offer Rapipago and Pago Fácil, follow the steps below.
- Create container
- Include and configure MercadoPago.js library
- Instantiate Brick
- Render Brick
- Manage other payment methods
And to help, we've prepared a complete code-example of the Payment Brick configuration with Rapipago and Pago Fácil that you can use as a template.
Create container
Client-Side
You will need to create a container to define where the Brick will be placed on the screen. The creation of the container is done by inserting an element (for example, a div) in the HTML code of the page where the Brick will be rendered (see the code below).
html
<div id="paymentBrick_container"></div>
Include and configure MercadoPago.js library
Client-Side
Use our official library to access Mercado Pago features from your frontend securely.
You will need to install the SDK by adding the following in your HTML code:
html
<script src="https://sdk.mercadopago.com/js/v2"></script>
Next, initialize the SDK by setting your public keyusing JavaScript code as follows:
javascript
const mp = new MercadoPago('YOUR_PUBLIC_KEY');
Instantiate Brick
Client-Side
With the container created and our SDK JS installed, the next step is to instantiate the Brick builder, which will allow generating the Brick. To create the Brick instance, insert the code below after the previous step.
javascript
const bricksBuilder = mp.bricks();
Render Brick
Client-Side
Once instantiated, the Brick can be rendered and have all its configurations compiled so that the final structure of the Brick is generated.
To render the Brick, insert the following code after the previous step and fill in the attributes according to the comments highlighted in this same code.
javascript
const renderPaymentBrick = async (bricksBuilder) => {
const settings = {
initialization: {
amount: 100, // total amount to be paid
},
customization: {
paymentMethods: {
ticket: 'all',
},
},
callbacks: {
onReady: () => {
/*
Callback called when Brick is ready
Here you can hide loadings from your site, for example.
*/
},
onSubmit: ({ selectedPaymentMethod, formData }) => {
// callback called when clicking on the data submission button
return new Promise((resolve, reject) => {
fetch("/processar-pago", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(formData)
})
.then((response) => {
// receive payment result
resolve();
})
.catch((error) => {
// handle error response when trying to create payment
reject();
})
});
},
onError: (error) => {
// callback called for all Brick error cases
console.error(error);
},
},
};
window.paymentBrickController = await bricksBuilder.create(
'payment',
'paymentBrick_container',
settings
);
};
renderPaymentBrick(bricksBuilder);
The result of rendering the Brick should be like the image below:
Manage other payment methods
Client-Side
To include payments via Rapipago and Pago Fácil, just use the following configuration:
settings = {
...,
customization: {
...,
paymentMethods: {
...,
ticket: 'all'
}
}
}
The ticket
property accepts 2 variable types, string
and string[]
. In the example above, payments via Rapipago and Pago Fácil will be accepted.
If you don't want to allow both payment methods, instead of the string all
, you can pass an array with just the desired IDs. As in the example below, where only payment via bank slip is accepted.
settings = {
...,
customization: {
...,
paymentMethods: {
...,
ticket: [ 'pagofacil' ]
}
}
}
In this case, as Pago Fácil is the only available means, the list for selecting where to pay will not be displayed.
If you want a complete list of IDs that can be passed within the array, check the Get Payment Methods API in our API Reference. For more information, check out the corresponding section.