# MD for: https://www.mercadopago.com.uy/developers/es/docs/checkout-bricks/payment-brick/advanced-features/manage-payment-methods.md \# Manage payment methods Payment Brick allows integration with multiple payment methods and, to do so, adjust the accepted payment methods in Brick's customizations. > To not include the payment method of a certain type, remove it from the \`paymentMethods\` object. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` const settings = { ..., customization: { paymentMethods: { ..., creditCard: "all", }, }, ``` Copiar ``` const customization = { paymentMethods: { ..., creditCard: 'all' } }; ``` Copiar The table below shows the available payment methods: > All types of payment methods accept the \`all\` option, so all options available for that type will be activated. | paymentMethods | Type | Possible values | | --- | --- | --- | | creditCard | string | To obtain available credit card amounts, check out the API \[Get payment methods\](https://www.mercadopago.com.uy/developers/en/reference/online-payments/checkout-api-payments/payment-methods/get). | | debitCard | string | To obtain available debit card amounts, check out the API \[Get payment methods\](https://www.mercadopago.com.uy/developers/en/reference/online-payments/checkout-api-payments/payment-methods/get). | | prepaidCard | string | To obtain available credit card amounts, check out the API \[Get payment methods\](https://www.mercadopago.com.uy/developers/en/reference/online-payments/checkout-api-payments/payment-methods/get). | | mercadoPago | string | \['wallet\_purchase'\] | | ticket | string | \['redpagos', 'abitab'\] |