Skip to content
API DocsDocs

SEPA Credit Transfer Payout Payload

Request and response payloads for SEPA Credit Transfer payouts.

2 min readUpdated Jul 23, 2026

Payment Method Identifier: SEPA_CREDIT_TRANSFER | Payment Type: BANK_TRANSFER

SEPA Credit Transfer is a EUR bank transfer payout method. The beneficiary's IBAN and account holder name are submitted directly in the apmPayload — no redirect or QR code is needed. The request is processed server-to-server and the response returns actionType: NONE. Only EUR payouts are supported.

Currently supported for payouts via POST /api/v1/payouts/apm.

#Required Request Fields

Top-Level Fields

FieldTypeDescription
callbackUrlStringURL to receive transaction status updates
successRedirectUrlStringURL to redirect the customer after successful payment
failureRedirectUrlStringURL to redirect the customer after failed payment

Billing Details (ApmBillingDetails)

FieldTypeDescription
emailStringThe customer's email address used for communication or receipts

#Payload Structure

{
  "paymentMethod": "SEPA_CREDIT_TRANSFER",
  "paymentType": "BANK_TRANSFER",
  "iban": "DE89370400440532013000",
  "accountHolderName": "Ada Lovelace"
}

Payload Fields

FieldTypeRequiredDescription
paymentMethodEnumYesMust be set to SEPA_CREDIT_TRANSFER
paymentTypeEnumYesMust be set to BANK_TRANSFER
ibanStringYesBeneficiary IBAN for the destination bank account
accountHolderNameStringYesFull legal name of the beneficiary account holder

#Expected apmResponseData

{
  "paymentMethod": "SEPA_CREDIT_TRANSFER",
  "paymentType": "BANK_TRANSFER",
  "actionType": "NONE",
  "redirectUrl": null,
  "iframeUrl": null,
  "qrData": null,
  "qrDeepLink": null,
  "providerTransactionId": "sepa-order-123456789"
}

#Response Fields

FieldTypeDescription
paymentMethodEnumAlways SEPA_CREDIT_TRANSFER
paymentTypeEnumAlways BANK_TRANSFER
actionTypeEnumAlways NONE — no customer redirect needed
redirectUrlStringAlways null
iframeUrlStringAlways null
qrDataStringAlways null
qrDeepLinkStringAlways null
providerTransactionIdStringProvider order identifier returned for the payout

SEPA Credit Transfer results are typically asynchronous — the initial response may be PROCESSING / PENDING. Wait for the webhook to determine the final status.

#See Also

Was this helpful?