Home
Documentation
Resources
Partners
Community

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Configure installments - Advanced features - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Configure installments

Client-Side

BrickCard Payment Brick
Customization momentWhen rendering Brick.
Propertycustomization.paymentMethods.minInstallments && customization.paymentMethods.maxInstallments
Typenumber
CommentsWhen a value is passed for min or maxInstallments, the number of installments will be constrained by the values ​​passed.
          
const settings = {
    ...,
    customization: {
        paymentMethods: {
            minInstallments: number,
            maxInstallments: number,
        },
    },
}

        
          
const customization = {
  paymentMethods: {
   minInstallments: number,
   maxInstallments: number,
 },
};