Payment methods - Settings - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps

Payment methods

The following table demonstrates the available payment method settings for each value prop:

Value propSettings
payment_methods (default) e payment_methods_logos- Payment methods (Available balance and Credits will always be enabled, credit cards, debit cards and ticket)

- Credit card brands (Visa, Mastercard, American Express, Naranja X, Cabal Cencosud, Cordobesa, Argencard, Diners, Tarjeta Shopping and CMR)

- Number of installments (2 to 12)

- Installments with or without interest

- Debit card brands (Visa, Mastercard, Maestro and Cabal)

- Ticket (Rapipago and Pago Fácil)
installments- Credit card brands (Visa, Mastercard, American Express, Naranja X, Cabal Cencosud, Cordobesa, Argencard, Diners, Tarjeta Shopping and CMR)

- Number of installments (2 to 12)

- Installments with or without interest
securityNo settings for the pop-up.
creditsNo pop-up.

Customizations are passed to Brick through the object below, which must be sent as the third parameter in the `create()`` method.

          
const settings = {
    customization: {
      paymentMethods: {
        excludedPaymentMethods: ["master"], // optional string[]. default []. options ["master", "visa", "amex", "naranja", "maestro", "cabal", "cencosud", "cordobesa", "argencard", "diners", "tarshop", "cmr", "rapipago", "pagofacil", "mercadopago"]
        excludedPaymentTypes: ["ticket"], // optional string[]. default []. options ["credit_card", "debit_card", "ticket", "account_money", "mercado_credito"]
        maxInstallments: 12, // optional number. min 2 max 12
        interestFreeInstallments: false, // optional boolean
     },
  },

};

        
          
const customization = {
    paymentMethods: {
        excludedPaymentMethods: ["master"], // optional string[]. default []. options ["master", "visa", "amex", "naranja", "maestro", "cabal", "cencosud", "cordobesa", "argencard", "diners", "tarshop", "cmr", "rapipago", "pagofacil", "mercadopago"]
         excludedPaymentTypes: ["ticket"], // optional string[]. default []. optional string[]. default []. options ["credit_card", "debit_card", "ticket", "account_money", "mercado_credito"]
      maxInstallments: 12, // optional number. min 2 max 12
      interestFreeInstallments: false, // optional boolean
    },
};