Webhooks for the Chargebacks API

This API supports webhooks. When asynchronous events occur on our side, we can send an HTTP call (webhook) to your application, so you can react to these events in real time.

You can set up webhooks via the dashboard. See the Next-gen Webhooks guide.

The payload of a webhook is always simply a snapshot of the entity, as returned by the GET endpoint.

If you are setting up webhooks via the Webhooks API instead for any of the events below, you will need access to payments.read.

Available webhook events

EventDescription
chargeback.receivedA chargeback has been received for a payment.
chargeback.reversedA previously received chargeback has been reversed.

Webhook payload examples

{
  "resource": "chargeback",
  "id": "chb_xFzwUN4ci8HAmSGUACS4J",
  "amount": { "currency": "EUR", "value": "10.00" },
  "reason": null,
  "paymentId": "tr_5B8cwPMGnU6qLbRvo7qEZo",
  "createdAt": "2024-03-20T09:13:37+00:00",
  "reversedAt": null,
  "_links": {
    "self": {
      "href": "https://api.mollie.com/v2/payments/tr_5B8cwPMGnU6qLbRvo7qEZo/chargebacks/chb_xFzwUN4ci8HAmSGUACS4J",
      "type": "application/hal+json"
    },
    "payment": {
      "href": "https://api.mollie.com/v2/payments/tr_5B8cwPMGnU6qLbRvo7qEZo",
      "type": "application/hal+json"
    },
    "documentation": {
      "href": "https://docs.mollie.com/reference/get-chargeback",
      "type": "text/html"
    }
  }
}
{
  "resource": "chargeback",
  "id": "chb_xFzwUN4ci8HAmSGUACS4J",
  "amount": { "currency": "EUR", "value": "10.00" },
  "reason": null,
  "paymentId": "tr_5B8cwPMGnU6qLbRvo7qEZo",
  "createdAt": "2024-03-20T09:13:37+00:00",
  "reversedAt": "2024-03-21T09:13:37+00:00",
  "_links": {
    "self": {
      "href": "https://api.mollie.com/v2/payments/tr_5B8cwPMGnU6qLbRvo7qEZo/chargebacks/chb_xFzwUN4ci8HAmSGUACS4J",
      "type": "application/hal+json"
    },
    "payment": {
      "href": "https://api.mollie.com/v2/payments/tr_5B8cwPMGnU6qLbRvo7qEZo",
      "type": "application/hal+json"
    },
    "documentation": {
      "href": "https://docs.mollie.com/reference/get-chargeback",
      "type": "text/html"
    }
  }
}