transactionId.withdrawalFee) and minimum withdrawal constraints beforehand via the Get Balances endpoint, and track the transfer lifecycle using Get SEPA Withdrawal Details.currency: Currency code (e.g., EUR, transformed to uppercase).amount: Transfer amount in EUR (must be a positive number).accountHolder: Full legal name or corporate name of the recipient (max 70 characters).iban: Destination International Bank Account Number.swift: BIC/SWIFT code of the destination bank (max 11 characters).bankName: Name of the receiving bank (max 70 characters).transferTitle: Payment reference or title string for remittance (max 70 characters).200 OK response indicates the transfer request has been accepted and queued.transactionId serves as the primary identifier to query transaction status or reconcile webhooks.curl --location 'https://stage-api.fintegence.io/v1/partner/sepa-transfer' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"currency": "EUR",
"amount": 10,
"accountHolder": "John Doe",
"iban": "PL61109010140000071219812874",
"swift": "BPKOPLPW",
"bankName": "PKO BP",
"transferTitle": "Test withdrawal"
}'{
"transactionId": "9b635d3d-a49c-4094-9088-7364c0c8809d"
}