Sharing Subscription Links

What Is a Subscription Link?

When you create a subscription offer, Inflow automatically generates a shareable URL:

https://checkout.inflowpay.com/subscribe/{offerId}

Customers who visit this link are redirected to the Inflow hosted checkout page, where they can complete their subscription.

How to Get the Link

From the Dashboard

  1. Go to Subscriptions in your Dashboard.
  2. Find the offer you want to share.
  3. Copy the subscription link from the offer details.

From the API

When you create a subscription offer via POST /subscription/offer, the response includes the offer's id. Build the link as:

https://checkout.inflowpay.com/subscribe/{offerId}

Where to Share

You can share the subscription link anywhere:

  • Email — Send it directly to customers
  • Website — Embed it as a button or link on your pricing page
  • Social Media — Post it on Twitter, Discord, Telegram, etc.
  • QR Code — Generate a QR code pointing to the link

Customization

The checkout page that customers see can be customized when creating the offer:

OptionDescription
bgColorBackground color (e.g., #ffffff)
fontColorFont color (e.g., #000000)
logoUrlYour brand logo URL
merchantNameYour brand name displayed on checkout

These are set via the sessionCustomization object in the API, or through the offer creation form in the Dashboard.

After Checkout

When a customer completes the subscription:

  1. They are redirected to your successUrl (if configured).
  2. The subscription appears in your Dashboard under Subscriptions.
  3. A webhook event is triggered (if configured).
  4. Recurring billing begins according to the offer's interval.

Subscription Links vs Payment Links

FeatureSubscription LinkPayment Link
PurposeRecurring paymentOne-time payment
URL format/subscribe/{offerId}/l/{linkId}
Created fromSubscription OffersLinks section
Recurring billingYesNo