# MD for: https://www.mercadopago.com.uy/developers/es/docs/checkout-pro/chargebacks/notifications.md \# Configure chargeback notifications Webhook 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.uy/developers/panel/app) and select the application for which you want to activate chargeback notifications. !\[Application\](https://www.mercadopago.com.uy/images/cow/not1-select-app-es-v1.png) 2\. In the left menu, select \*\*Webhooks > Configure Notifications\*\*. !\[Webhooks\](https://www.mercadopago.com.uy/images/cow/not2-webhooks-es-v1.png) 3\. Configure the productive HTTPS URL that will be used to receive notifications. !\[URL\](https://www.mercadopago.com.uy/images/cow/not3-url-es-v1.png) 4\. In recommended events, select the \*\*Chargebacks\*\* event to receive notifications, which will be sent in \`JSON\` format via an \`HTTPS POST\` to the specified URL. !\[Chargebacks\](https://www.mercadopago.com.uy/images/cow/not4-url-es-v1.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.uy/developers/en/docs/your-integrations/notifications/webhooks). \*\*Notification example\*\*: The notifications sent by Mercado Pago for the \`chargebacks\` topic will be similar to the following example: \`\`\` { "actions":\[ "changed\_case\_status", \], "api\_version":"v1", "application\_id":9007201037432480, "data":{ "checkout":"PRO", "date\_updated":"0001-01-01T00:00:00Z", "id":233000061680860000, "payment\_id":81968653106, "product\_id":"C00A2J8RF4DI8BCIMFU0", "site\_id":"MLA", "transaction\_intent\_id":"" }, "date\_created":"2024-07-03T19:34:28-04:00", "id":114411153595, "live\_mode":true, "type":"topic\_chargebacks\_wh", "user\_id":634060442, "version":1720035618 } \`\`\` These notifications provide complete information about the process initiated by the customer, being essential to \[manage the chargeback\](https://www.mercadopago.com.uy/developers/en/docs/checkout-pro/chargebacks/manage).