Create SEPA transfer
documentedCreate a SEPA transfer.
POST /v2/sepa/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/sepa/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 '{"vop_proof_token": "{{$vop_proof_token}}", "transfer": {"beneficiary_id": "{{$beneficiary_id}}", "bank_account_id": "{{$bank_account_id}}", "reference": "{{$reference}}", "amount": "{{$amount}}", "note": "{{$note}}", "attachment_ids": ["{{$attachment_id}}"], "scheduled_date": "{{$scheduled_date}}"}}'