# MD for: https://www.mercadopago.com.uy/developers/es/docs/checkout-bricks/payment-brick/advanced-features/initialize-data-on-the-bricks.md \> CLIENT\_SIDE > > h1 > > Initialize data on the Bricks ## Cards In the form displayed for payment by card, you can start with the \*\*document\*\* and \*\*email\*\* fields already filled in. For this, it is necessary to pass the following configuration in the Brick's initialization object. * [javascript ](#editor%5F1) * [react-jsx ](#editor%5F2) javascript react-jsx ``` settings = { ..., initialization: { ..., payer: { ..., email: '', identification: { type: 'string', number: 'string', }, } } } ``` Copiar ``` const initialization = { ..., payer: { ..., email: '', identification: { type: 'string', number: 'string', }, }, }; ``` Copiar