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

Default payment method - Advanced features - Mercado Pago Developers

Intelligent search powered by OpenAI 

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-all