Documentation
Resources
Certifications
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Community

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

Cobros online
Cobros presenciales
Herramientas y recursos
APIs y SDKS
Configure installments - Advanced features - Mercado Pago Developers

Configure installments

Client-Side

BrickPayment 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,
 },
};