POST
/
v2
/
sepa
/
bulk_transfers
Create a Bulk Transfer
curl --request POST \
  --url https://thirdparty.qonto.com/v2/sepa/bulk_transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Qonto-Idempotency-Key: <x-qonto-idempotency-key>' \
  --data '{
  "bank_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "bulk_transfers": [
    {
      "beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "beneficiary": {
        "name": "Alice In Wonderland",
        "iban": "DE91100000000123456789",
        "bic": "DEUTDEDDXXX",
        "email": "beneficiary@example.com",
        "activity_tag": "atm"
      },
      "reference": "Inventory",
      "amount": "100.50",
      "scheduled_date": "2023-12-25",
      "note": "Inventory goods for restaurant in Paris",
      "attachment_ids": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "client_transfer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"initiator_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2025-04-22T12:00:00Z",
"updated_at": "2025-04-22T12:00:00Z",
"total_count": 400,
"completed_count": 200,
"failed_count": 150,
"pending_count": 50,
"results": [
{
"client_transfer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transfer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"errors": [
{
"errors": [
{
"code": "<string>",
"detail": "<string>"
}
]
}
],
"status": "pending"
}
]
}

Authorizations

Authorization
string
header
required

Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.

Headers

X-Qonto-Staging-Token
string

Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.

X-Qonto-2fa-Preference
enum<string>
default:paired-device
Available options:
paired-device,
passkey,
mock,
sms-otp
X-Qonto-Idempotency-Key
string
required

Learn more in Idempotent Requests.

Example:

"123e4567-e89b-12d3-a456-426614174000"

X-Qonto-Sca-Session-Token
string
X-Qonto-MFA
string

Learn more in the SMS OTP Flow.

Body

application/json
bank_account_id
string<uuid>
required

The ID of the bank account from which the amount will be debited from.

bulk_transfers
object[]
required

List of SEPA transfers to process (up to 400).

Maximum length: 400

Response

Successfully creates a BulkTransfer for processing

id
string<uuid>
required

Unique identifier for the bulk transfer job.

initiator_id
string<uuid>
required

Unique identifier for the member that created the BulkTransfer.

created_at
string<date-time>
required

UTC, the time at which the bulk transfer was first recorded.

Example:

"2025-04-22T12:00:00Z"

updated_at
string<date-time>
required

UTC, the time at which the bulk transfer was last updated.

Example:

"2025-04-22T12:00:00Z"

total_count
integer
required

Total number of transfers in the job.

Example:

400

completed_count
integer
required

Total number of transfers successfully completed in the job.

Example:

200

failed_count
integer
required

Total number of transfers failed in the job.

Example:

150

pending_count
integer
required

Total number of transfers pending in the job.

Example:

50

results
object[]
required

Detailed status of each individual transfer in the job.