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 business-account-draft-transfers.read.
Available webhook events
| Event | Description |
|---|---|
business-account-draft-transfer.approved | The draft transfer is approved by the initiator. |
business-account-draft-transfer.created | The draft transfer is created and awaiting review by a human initiator in Mollie Apps. |
business-account-draft-transfer.declined | The draft transfer is declined, either by the initiator, the creator, or because the debtor account was closed. |
Webhook payload examples
{
"resource": "business-account-draft-transfer",
"id": "badrt_87GByBuj4UCcUTEbs6aGJ",
"mode": "live",
"debtor": {
"fullName": "Mollie B.V.",
"account": {
"iban": "NL55MLLE0123456789"
}
},
"creditor": {
"fullName": "Jan Jansen",
"account": {
"iban": "NL02ABNA0123456789"
}
},
"amount": {
"currency": "EUR",
"value": "100.00"
},
"description": "Invoice 12345",
"scheduledExecutionDate": "2025-03-01",
"status": "approved",
"statusReason": null,
"createdAt": "2025-01-01T12:00:00+00:00",
"approvedAt": "2025-01-01T12:05:00+00:00",
"_links": {
"self": {
"href": "https://api.mollie.com/v2/business-accounts/draft-transfers/badrt_87GByBuj4UCcUTEbs6aGJ",
"type": "application/hal+json"
}
}
}{
"resource": "business-account-draft-transfer",
"id": "badrt_87GByBuj4UCcUTEbs6aGJ",
"mode": "live",
"debtor": {
"fullName": "Mollie B.V.",
"account": {
"iban": "NL55MLLE0123456789"
}
},
"creditor": {
"fullName": "Jan Jansen",
"account": {
"iban": "NL02ABNA0123456789"
}
},
"amount": {
"currency": "EUR",
"value": "100.00"
},
"description": "Invoice 12345",
"scheduledExecutionDate": "2025-03-01",
"status": "pending-review",
"statusReason": null,
"createdAt": "2025-01-01T12:00:00+00:00",
"_links": {
"self": {
"href": "https://api.mollie.com/v2/business-accounts/draft-transfers/badrt_87GByBuj4UCcUTEbs6aGJ",
"type": "application/hal+json"
}
}
}{
"resource": "business-account-draft-transfer",
"id": "badrt_87GByBuj4UCcUTEbs6aGJ",
"mode": "live",
"debtor": {
"fullName": "Mollie B.V.",
"account": {
"iban": "NL55MLLE0123456789"
}
},
"creditor": {
"fullName": "Jan Jansen",
"account": {
"iban": "NL02ABNA0123456789"
}
},
"amount": {
"currency": "EUR",
"value": "100.00"
},
"description": "Invoice 12345",
"scheduledExecutionDate": "2025-03-01",
"status": "declined",
"statusReason": {
"code": "declined-by-initiator",
"message": "The draft transfer has been declined by the initiator: Insufficient budget approval"
},
"createdAt": "2025-01-01T12:00:00+00:00",
"declinedAt": "2025-01-01T12:05:00+00:00",
"_links": {
"self": {
"href": "https://api.mollie.com/v2/business-accounts/draft-transfers/badrt_87GByBuj4UCcUTEbs6aGJ",
"type": "application/hal+json"
}
}
}