# MD for: https://www.mercadopago.com.mx/developers/es/docs/checkout-bricks/payment-brick/advanced-features/customers-cards.md \> CLIENT\_SIDE > > h1 > > Include saved cards In order for Payment Brick to be able to display the saved cards of a given buyer, it is necessary to send the customer ID and card IDs to Brick at the time of its initialization, as in the example below. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` settings = { initialization: { ..., payer: { ..., customerId: '209277402-FqRqgEc3XItrxs', cardsIds: [ '1518023392627', '1518023332143' ] }, }, ... } ``` Copiar ``` const initialization = { ..., payer: { ..., customerId: '209277402-FqRqgEc3XItrxs', cardsIds: [ '1518023392627', '1518023332143' ] }, }; ``` Copiar Just passing these two properties, Brick will automatically give the user the option to make the payment with their saved cards. > WARNING > > Attention > > Only no expired cards will be shown to the buyer, expired cards will not be made available. !\[payment-brick-c\](https://www.mercadopago.com.mx/checkout-bricks/payment-brick-cc-en-mlm.jpg) To learn how to create, modify and get the \`customerId\` and \`cardsIds\`, see the \[Cards and customers management\](https://www.mercadopago.com.mx/developers/en/docs/checkout-api-payments/customer-management) section of the Checkout API documentation.