POST
/
v2
/
internal_transfers
curl --request POST \
  --url https://thirdparty.qonto.com/v2/internal_transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Qonto-Idempotency-Key: <x-qonto-idempotency-key>' \
  --data '{
  "internal_transfer": {
    "debit_iban": "IT12M3609201600032486198434",
    "credit_iban": "IT13M3609201600032486198435",
    "reference": "Internal transfer",
    "amount": "12345.67",
    "currency": "EUR"
  }
}'
{
"internal_transfer": {
"id": "0ded2767-f44d-48b4-9e98-b8b6d9359c07",
"slug": "yottanet-6666-1-transfer-52",
"status": "pending",
"amount": "12345.67",
"amount_cents": "1234567",
"currency": "EUR",
"reference": "Internal transfer",
"created_at": "2021-05-11T10:22:55.090Z"
}
}

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

Learn more in Idempotent Requests.

Example:

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

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 internal transfer created.

The response is of type object.