Generate a Payment Link

Available via: Dashboard and API

Use the Inflow Dashboard to create a shareable payment link that redirects customers to an Inflow-hosted checkout page.

How to Create a Payment Link

  1. Go to the Links section of your Dashboard (or use the Create Payment Link button in the Payments page).
  2. Click Create Link.
  3. Fill in the details:
    • Product name or description
    • Amount
    • Quantity (optional)
    • Optional: collect customer email
  4. Click Create to generate your link.
  5. Share the link via email, social media, messaging, or embed it on your website.

What Happens Next

When a customer opens the link, they are redirected to the Inflow hosted checkout page where they can complete their payment using the available methods (Open Banking or Card).

Managing Your Links

In the Links section of your dashboard, you can:

  • Enable or Disable a link to control its availability
  • Edit the link name
  • View all payments made through each link

Payment Links via the API

You can also create and manage payment links programmatically:

curl -X POST https://api.inflowpay.xyz/api/link \
  -H "X-Inflow-Api-Key: inflow_priv_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "currency": "EUR",
    "products": [{ "name": "Premium Plan", "price": 2500, "quantity": 1 }]
  }'
FieldTypeRequiredDescription
currencystringYesEUR or USD
productsarrayYesList of products with name (string), price (number, in cents), quantity (number)
statusstringNoenabled (default) or disabled
sessionCustomizationobjectNoCustom checkout appearance (bgColor, fontColor, logoUrl, merchantName)
pricingModestringNoTAX_EXCLUSIVE (default) or TAX_INCLUSIVE

Prices are in cents. For example, €25.00 = 2500.

See the API Reference for the full list of options.

Payment Links vs Subscription Links

TypePurposeCreated from
Payment LinkOne-time paymentDashboard (Links) or API (POST /api/link)
Subscription LinkRecurring paymentDashboard (Subscriptions) or API (POST /subscription/offer)

To create a subscription link, see Creating a Subscription Offer.