Sign in

Create a payment link

documented

Create a payment link for accepting payments.

POST /v2/payment_linksPayments & 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" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -d '{
  "payment_link": {
    "potential_payment_methods": {{$potential_payment_methods}},
    "reusable": {{$reusable}},
    "items": [
      {
        "title": "{{$title}}",
        "quantity": {{$quantity}},
        "unit_price": {
          "value": "{{$unit_price_value}}",
          "currency": "{{$currency}}"
        },
        "vat_rate": "{{$vat_rate}}",
        "type": "{{$type}}",
        "description": "{{$description}}",
        "measure_unit": "{{$measure_unit}}"
      }
    ]
  }
}'