# MD for: https://www.mercadopago.com.br/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 \## Pix In the form displayed for payment by Pix, you can start with the \*\*email\*\* field already filled in. For this, it is necessary to pass the following configuration in the Brick's initialization object. * [javascript ](#editor%5F3) * [react-jsx ](#editor%5F4) javascript react-jsx ``` settings = { ..., initialization: { ..., payer: { email: '' } } ``` Copiar ``` const initialization = { ..., payer: { ..., email: '', }, }; ``` Copiar \## Other payment methods In the form displayed for payment by \*\*boleto bancário\*\* and \*\*payment in lottery\*\*, you can start with the fields already filled in. For this, it is necessary to pass the following configuration in the Brick's initialization object. * [javascript ](#editor%5F5) * [react-jsx ](#editor%5F6) javascript react-jsx ``` settings = { ..., initialization: { ..., payer: { firstName: '', lastName: '', identification: { "type": "", "number": "", }, email: '', address: { zipCode: '', federalUnit: '', city: '', neighborhood: '', streetName: '', streetNumber: '', complement: '', } } } ``` Copiar ``` const initialization = { ..., payer: { firstName: '', lastName: '', identification: { "type": "", "number": "", }, email: '', address: { zipCode: '', federalUnit: '', city: '', neighborhood: '', streetName: '', streetNumber: '', complement: '', } }, }; ``` Copiar