# MD for: https://www.mercadopago.com.co/developers/pt/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 \## Other payment methods In the form displayed for payment by other payment methods, 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%5F3) * [react-jsx ](#editor%5F4) javascript react-jsx ``` settings = { ..., initialization: { ..., payer: { ..., email: '', } } } ``` Copiar ``` const initialization = { ..., payer: { email: '', }, }; ``` Copiar \## PSE In the form shown for payment with PSE, you can start with the \*\*email\*\*, \*\*person\*\* and \*\*id\*\* 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: { email: '', entityType: 'individual', identification: { type: '', number: '' } } } } ``` Copiar ``` const initialization = { ..., payer: { email: '', entityType: 'individual', identification: { type: '', number: '' } } }; ``` Copiar