Sign in

Connect to the payment links provider

documented

Connect a bank account to the payment links provider.

POST /v2/payment_links/connectionsPayments & Transfersno implementation yet0 runs
No 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/payment_links/connections" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-Qonto-Staging-Token: {{X_QONTO_STAGING_TOKEN}}" \
  -d '{
    "partner_callback_url": "{{$partner_callback_url}}",
    "user_bank_account_id": "{{$user_bank_account_id}}",
    "user_phone_number": "{{$user_phone_number}}",
    "user_website_url": "{{$user_website_url}}",
    "business_description": "{{$business_description}}"
  }'