Parse e-mails from your Software directly to checkout URL
Custom Links for Hosted Checkout
Purpose
This feature allows to use custom links for the hosted checkout on their websites. It streamlines the checkout process by dynamically pre-filling user-specific details, such as the user’s email address and the quantity of the product being purchased. This is particularly beneficial for businesses selling subscriptions or products requiring customized inputs.
How It Works
You can add specific query parameters to the hosted checkout URL to dynamically pass values like:
User Email: Pre-fills the email field for the end-user using the fngs-user-email parameter.
Quantity: Pre-sets the quantity for the product using the fngs-quantity parameter.
Note: To use the fngs-quantity parameter for subscription offers, the Mutable Quantity feature must be enabled in the offer settings.
When the link with the query parameters is used to redirect a user to the hosted checkout page, these parameters are automatically applied, providing a tailored and seamless checkout experience.
Steps to Use
Construct the Custom Link:
Start with the base URL of the hosted checkout page: https://example.com/checkout
Add query parameters to the URL for dynamic values:
fngs-user-email: The user's email address.
fngs-quantity: The quantity of the product.
Example:
https://example.com/checkout?fngs-user-email=john.doe@example.com&fngs-quantity=3
Enable Mutable Quantity (For Subscription Offers): If the offer involves subscriptions, ensure the Mutable Quantity feature is enabled in the offer settings. Without this setting, the fngs-quantity parameter will not be applied to subscription products.
Redirect to the Link:
Use the custom link in your website’s code to redirect users to the checkout page. Ensure the query parameters are correctly populated with dynamic values before redirection.
Verify the Checkout: The hosted checkout page will display:
Prefilled Email: From the fngs-user-email parameter.
Quantity: From the fngs-quantity parameter, if applicable.
Last updated