SUCCESSFUL
transfer, the payload contains the full details of the transaction. For a FAILED transfer, the payload is minimal and focuses on the error details. This webhook is essential for tracking payment statuses, updating accounting records, and notifying end-users.SUCCESSFUL
: The SEPA transfer was successfully processed and sent.FAILED
: The SEPA transfer failed. The error object in the payload will contain details about the cause of the failure.curl --location --request POST 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": "123f6603-5a71-45c3-a222-1de369bb1c4d",
"type": "external",
"amount": "3.8",
"transferTitle": "Partner SEPA Transfer",
"destinationIban": "PL49109024028743516259813188",
"receiverFirstName": null,
"receiverLastName": null,
"status": "SUCCESSFUL",
"currency": "eur",
"fee": 0,
"createdAt": "2025-08-05T10:33:54.730Z"
}'
{}