Home
Documentation
Resources
Certifications
Community

Resources

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

Community

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

Add external reference - Advanced features - Mercado Pago Developers

Intelligent search powered by OpenAI 

Add external reference

Client-Side

By default, the Status Screen Brick does not show the external_reference field of the Payments API, but how this data can be useful to allow the integrator to identify the purchase on your website, you can enable the field through the configuration below.

          
const settings = {
 initialization: {
   paymentId: 100, // payment id generated by Mercado Pago
 },
 callbacks: {
   onReady: () => {
     // callback called when Brick is ready
   },
   onError: (error) => {
     // callback called for all Brick error cases
   },
 },
 customization: {
   visual: {
       showExternalReference: true
   }
 }
};

        
          
const customization = {
 visual: {
   showExternalReference: true
 }
};

        

status-screen-brick-external-reference