Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Additional callbacks - Advanced features - Mercado Pago Developers

Intelligent search powered by OpenAI 

Additional callbacks

When initializing the Brick, it is possible to configure additional callbacks that provide the integrator with more information during the execution of the Brick. See below the additional callbacks available for integration.

  • onError: callback triggered whenever an error occurs in the Brick. The function parameter contains detailed information about what happened.

  • onReady: callback triggered as soon as the Brick is ready to receive user interactions. This callback has no parameters in this Brick.

  • onSubmit: callback triggered when the user clicks the button. This callback has no parameters in this Brick.

            
    const settings = {
       ...,
       callbacks: {
           onError: (error) => {
               // triggered when an error happens
               console.log(error);
           },
           onReady: () => {
               // triggered when brick is ready
           },
           onSubmit: () => {
               // triggered when the button is clicked
           },
       }
    };
    
          
            
    <Wallet
        ...,
      onError={(error) => {
            // triggered when an error happens
            console.log(error)
        }}
      onReady={() => {
            // triggered when brick is ready
        }}
        onSubmit={() => {
            // triggered when the button is clicked
        }}
    />