data object and follows one of two distinct structures:transactionId, externalId, status, amount, currency, accountHolder, iban, swift, bankName, fee, createdAt).transactionId and the specific error code in the error string field.transactionId: Internal partner transaction identifier (UUID).externalId: External reference identifier for the SEPA withdrawal (UUID).status: Current processing state of the withdrawal (e.g., started, pending, successful).amount: Gross fiat withdrawal amount (as a decimal string).currency: Fiat currency code (EUR).accountHolder: Full name or corporate name of the recipient.iban: Destination International Bank Account Number.swift: Destination bank BIC/SWIFT code.bankName: Receiving bank name.fee: Provision/fee deducted for processing the transfer (as a decimal string).createdAt: ISO 8601 UTC creation timestamp.started: SEPA withdrawal request accepted and queued in the pipeline.pending: Transfer submitted to the banking provider; clearing in progress.waiting-for-verification: Escalated for internal compliance or manual risk review.successful: Transfer cleared by the banking network and completed.unsuccessful / rejected-by-reviewer / banned: Withdrawal failed, bounced, or was rejected during risk review.successful.accountHolder, iban, swift, bankName) are always present in state progress updates, ensuring immediate visibility into payment routing.error is present, process the payout rejection immediately without waiting for standard status fields.successful or error) or query Get SEPA Withdrawal Details to confirm final banking settlement.curl --location 'https://your-api-server.com' \
--header 'Content-Type: application/json' \
--data '{
"type": "SEPA_WITHDRAWAL_UPDATE",
"data": {
"transactionId": "b14472f5-6843-4c02-b808-438eedd335d9",
"externalId": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"status": "successful",
"amount": "1500.00",
"currency": "EUR",
"accountHolder": "FINTEGENCE S.R.O.",
"iban": "LT36 3130 0101 0420 3257",
"swift": "BZENLT22",
"bankName": "ZEN UAB",
"fee": "2.50",
"createdAt": "2026-09-14T08:25:12.456Z"
}
}'{}