Default payment method - Advanced features - Mercado Pago Developers
What are you looking for?

Do not know how to start integrating? 

Check the first steps

Default payment method

It is possible to initialize Payment Brick with a payment option already open. To configure a default payment method, use the configuration below.

          
settings = {
 ...,
 customization: {
   ...,
   visual: {
     ...,
     defaultPaymentOption: {
       walletForm: true,
       // creditCardForm: true,
       // debitCardForm: true,
       // savedCardForm: 'card id sent in the initialization',
       // ticketForm: true,
     },
   },
 }
}

        
          
const customization = {
 visual: {
   defaultPaymentOption: {
     walletForm: true,
     // creditCardForm: true,
     // debitCardForm: true,
     // savedCardForm: 'card id sent in the initialization',
     // ticketForm: true,
   },
 }
};

        
Attention
It is not possible to enable more than one default payment method, so use only one property inside the defaultPaymentOption object.

default-payment-option-mlc