Additional callbacks
When initializing Brick it is possible to configure additional callbacks, which provide the integrator with more information during the Brick execution.
onBinChange
The onBinChange
callback is used to get the bin of the card being inserted into the Brick. This callback is called on the fly whenever the card bin is updated.
const settings = {
...,
callbacks: {
...
onBinChange: (bin) => {
// callback called whenever card bin is changed
console.log(bin);
},
}
};
<Payment
...,
onBinChange={bin => {
console.log(bin);
}}
/>