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
- Go to Subscriptions in your Dashboard.
- Find the offer you want to share.
- 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:
| Option | Description |
|---|---|
bgColor | Background color (e.g., #ffffff) |
fontColor | Font color (e.g., #000000) |
logoUrl | Your brand logo URL |
merchantName | Your 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:
- They are redirected to your
successUrl(if configured). - The subscription appears in your Dashboard under Subscriptions.
- A webhook event is triggered (if configured).
- Recurring billing begins according to the offer's interval.
Subscription Links vs Payment Links
| Feature | Subscription Link | Payment Link |
|---|---|---|
| Purpose | Recurring payment | One-time payment |
| URL format | /subscribe/{offerId} | /l/{linkId} |
| Created from | Subscription Offers | Links section |
| Recurring billing | Yes | No |
Updated 1 day ago