Inicializar datos en Bricks
Client-Side
Iniciar Brick con email
Brick | Card Payment Brick |
Momento de personalización | Al renderizar Brick |
Propiedad | initialization.payer.email |
Tipo | string |
Observaciones | Cuando se envía un correo electrónico válido, el campo de correo electrónico se oculta. |
const settings = {
initialization: {
amount: number,
payer: {
email: 'string',
},
},
...
}
const initialization = {
...,
payer: {
...,
email: '<PAYER_EMAIL_HERE>',
},
};
Iniciar Brick con documento
Brick | Card Payment Brick |
Momento de personalización | Al renderizar Brick |
Propiedad | initialization.payer.identification.type & initialization.payer.identification.number |
Tipo | string |
Observaciones | Cuando se envía un número de identificación válido y un tipo de identificación correspondiente, el campo del documento del pagador ya está automaticamente completado. |
const settings = {
initialization: {
amount: number,
payer: {
identification: {
type: 'string',
number: 'string',
},
},
},
...
}
const initialization = {
...,
payer: {
...,
identification: {
type: 'string',
number: 'string',
},
},
};