Skip to main content
POST
/
v2
/
internal_transfers
Create an internal transfer
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": "<string>",
    "credit_iban": "<string>",
    "reference": "<string>",
    "amount": "<string>",
    "amount_currency": "<string>"
  }
}
'
{
  "internal_transfer": {
    "id": "<string>",
    "slug": "<string>",
    "status": "<string>",
    "amount": "<string>",
    "amount_cents": "<string>",
    "currency": "<string>",
    "reference": "<string>",
    "created_at": "<string>"
  }
}

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
internal_transfer
object
required

Response

Returns the internal transfer created.

internal_transfer
object