POST
/
v2
/
requests
/
multi_transfers
curl --request POST \
  --url https://thirdparty.qonto.com/v2/requests/multi_transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Qonto-Idempotency-Key: <x-qonto-idempotency-key>' \
  --data '{
  "request_multi_transfer": {
    "note": "Salary of marketing departmenet. Please approve ASAP.",
    "transfers": [
      {
        "amount": "2000.50",
        "currency": "EUR",
        "credit_iban": "FR7630001007941234567890183",
        "credit_account_name": "URSSAF",
        "credit_account_currency": "EUR",
        "reference": "Invoice 2023-01",
        "attachment_ids": [
          "d840f1cb-6adb-48af-9f89-540dcf5ba741"
        ]
      }
    ],
    "scheduled_date": "2023-03-06",
    "debit_iban": "FR0807277000000000000000911"
  }
}'
{
  "request_multi_transfer": {
    "id": "bb8f8d1d-5f12-486e-8f8e-90cc2af76038",
    "request_type": "multi_transfer",
    "status": "pending",
    "initiator_id": "6b1872e4-08e4-42ec-9c82-b441ec242a9b",
    "approver_id": null,
    "note": "Salary of marketing departmenet. Please approve ASAP",
    "declined_note": null,
    "total_transfers_amount": "2000.50",
    "total_transfers_amount_currency": "EUR",
    "total_transfers_count": 1,
    "scheduled_date": "2023-03-06",
    "processed_at": null,
    "created_at": "2023-02-16T17:33:38.215Z",
    "transfers": [
      {
        "id": "d840f1cb-6adb-48af-9f89-540dcf5ba741",
        "credit_account_name": "URSSAF",
        "amount": "2000.50",
        "currency": "EUR",
        "reference": "Invoice 2023-01"
      }
    ]
  }
}

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-Idempotency-Key
string
required

The API supports idempotency for safely retrying requests without accidentally performing the same operation twice. The idempotency key must be a unique string. We recommend using a UUID.

X-Qonto-Staging-Token
string

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

Body

application/json

Response

200
application/json
Returns the request created.

The response is of type object.