Create internal transfer
documentedCreate an internal transfer between bank accounts within the same organization.
POST /v2/internal_transfersPayments & Transfersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://thirdparty.qonto.com/v2/internal_transfers" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Qonto-Idempotency-Key: {{$idempotency_key}}" \
-d '{"internal_transfer": {"debit_iban": "{{$debit_iban}}", "credit_iban": "{{$credit_iban}}", "reference": "{{$reference}}", "amount": "{{$amount}}", "currency": "{{$currency}}"}}'