# MD for: https://www.mercadopago.com.ar/developers/en/docs/split-payments-1-n/payments-management/chargebacks-notifications.md \# Configure chargeback notifications \[Webhooks\](https://www.mercadopago.com.ar/developers/en/docs/split-payment/split-1-n/payments-management/notifications) notifications (also known as web callbacks) are a simple method that allows an application or system to provide real-time information whenever an event occurs. It is a passive way of receiving data between two systems through an \`HTTP POST\` request. Once configured, these notifications will be sent whenever a chargeback is created or its status is modified. From the received information, it will be possible to manage the chargeback. Below, we present a step-by-step guide to perform the configuration. 1\. Access \[Your integrations\](https://www.mercadopago.com.ar/developers/panel/app) and select the application for which you want to activate chargeback notifications. !\[cofigure notifications\](https://www.mercadopago.com.ar/images/api-orders/not1-app-es.png) 2\. In the left menu, select \*\*Webhooks > Configure Notifications\*\*. !\[cofigure notifications\](https://www.mercadopago.com.ar/images/api-orders/not2-configure-es.png) 3\. In "Production URL", configure the productive \`HTTPS URL\` that will be used to receive notifications. 4\. In the recommended events, besides the \*\*Order (Mercado Pago)\*\* event \[already configured previously\](https://www.mercadopago.com.ar/developers/en/docs/split-payment/split-1-n/payments-management/notifications#bookmark\_configure\_notifications) to receive the transaction statuses, also select the \*\*Chargebacks\*\* event to receive notifications tracking the stages of the chargeback. These notifications will be sent in \`JSON\` format via \`HTTPS\` POST to the URL specified earlier. !\[cofigure notifications\](https://www.mercadopago.com.ar/images/api-orders/not4-order-es.png) 5\. Finally, click \*\*Save Settings\*\*. This will generate a unique secret key for the application, which will allow you to validate the authenticity of the received notifications, ensuring that they have been sent by Mercado Pago. For more details, refer to the \[Webhook Notifications Documentation\](https://www.mercadopago.com.ar/developers/en/docs/split-payment/split-1-n/payments-management/notifications). ## Notification example The notifications sent by Mercado Pago for the \`chargebacks\` topic will be similar to the following example: \`\`\`json { "action": "order.charged\_back", "api\_version": "v1", "application\_id": "874202490252970", "data": { "external\_reference": "ext\_ref\_1234", "id": "ORD01JRTXT3GC8CJGW394QWYQ9VP3", "status": "charged\_back", "status\_detail": "settled", "total\_amount": "200.00", "total\_paid\_amount": "200.00", "transactions": { "payments": \[ { "id": "PAY01JRTXT3GC8CJGW394QZZ349N6", "amount": "200.00", "paid\_amount": "200.00", "payment\_method": { "id": "master", "installments": 1, "type": "credit\_card" }, "status": "charged\_back", "status\_detail": "settled", "reference": { "id": "ref-0" } } \], "chargebacks": \[ { "id": "CBK12JRTXT3GC8CJGW394QZZ349M7", "transaction\_id": "PAY01JRTXT3GC8CJGW394QZZ349N6", "case\_id": "234000062890459000", "status": "settled", "amount": "200.00", "references": \[ { "id": "01JSZZW4Q2JZJZC1R1W08KRVEP" } \] } \], }, "type": "online", "version": 1 }, "date\_created": "2025-04-14T19:53:23.114998555Z", "live\_mode": false, "type": "order", "user\_id": "2021490138" } \`\`\` These notifications provide complete information about the process initiated by the customer, being essential to \[manage the chargeback\](https://www.mercadopago.com.ar/developers/en/docs/split-payment/split-1-n/payments-management/chargebacks-management).