Inicializar dados nos Bricks
Client-Side
Cartões
No formulário exibido para pagamento com cartões, é possível inicializar com os campos de documento e e-mail já preenchidos. Para isso, é necessário passar a seguinte configuração no objeto de inicialização do Brick.
settings = {
...,
initialization: {
...,
payer: {
...,
email: '<PAYER_EMAIL_HERE>',
identification: {
type: 'string',
number: 'string',
},
}
}
}
const initialization = {
...,
payer: {
...,
email: '<PAYER_EMAIL_HERE>',
identification: {
type: 'string',
number: 'string',
},
},
};
Outros meios de pagamento
No formulário exibido para pagamento com Rapipago e Pago Fácil, é possível inicializar com as informações já preenchidas. Para isso, é necessário passar a seguinte configuração no objeto de inicialização do Brick.
settings = {
...,
initialization: {
...,
payer: {
email: '<PAYER_EMAIL_HERE>',
}
}
const initialization = {
...,
payer: {
firstName: '<PAYER_FIRST_NAME_HERE>',
lastName: '<PAYER_LAST_NAME_HERE>',
identification: {
"type": "<PAYER_DOC_TYPE_HERE>",
"number": "<PAYER_DOC_NUMBER_HERE>",
},
email: '<PAYER_EMAIL_HERE>',
address: {
zipCode: '<PAYER_ZIP_CODE_HERE>',
federalUnit: '<PAYER_FED_UNIT_HERE>',
city: '<PAYER_CITY_HERE>',
neighborhood: '<PAYER_NEIGHBORHOOD_HERE>',
streetName: '<PAYER_STREET_NAME_HERE>',
streetNumber: '<PAYER_STREET_NUMBER_HERE>',
complement: '<PAYER_COMPLEMENT_HERE>',
}
},
};