Flex Checkout Quick Start
Flex Checkout is our low-code integration to accept HSA/FSA payments.
At this point you should have a Flex account, access to the partner dashboard, and have gone through the onboarding process of adding your payout information with Stripe.
Below we walk through a full example of how to integrate Flex Checkout into your checkout flow.
Flex Checkout guide
Create an API Key in the partner dashboard
If you’re just getting started, be sure to create an API Key in test mode to safely distinguish between testing and production.
In the partner dashboard, navigate to the Developers section. Here you’ll find an API Keys tab where you can create a key to interact with Flex.
Select the New API Key
button and give your key a name. With this key, you can now
make authenticated requests to the Flex API.
Define a product to sell
Always keep sensitive information—like price and availability—on your server to
prevent customer-side manipulation. Define product data when creating the Checkout
Session using predefined price IDs or on the fly with price_data
.
For this example, we’ve created a product eligible via a Letter of Medical Necessity. To learn more, see the Product docs or the Product API.
Define the price for our product
Using the returned product_id
, create a one-time price for $50.99:
Choose the mode
Checkout supports two modes: payment
(one-time purchases) or subscription
.
Learn more about subscription and setup modes in the docs.
Supply success and cancel URLs
Specify publicly accessible URLs so Flex can redirect after checkout:
success_url
:https://withflex.com/thank-you?success=true
cancel_url
:https://withflex.com/thank-you?canceled=true
Build your checkout
On your site’s order preview page, add a button that calls your server to generate a checkout session.
Generate a checkout session
On your server, create a session with your line items and redirect URLs:
Redirect users to checkout
The response includes a redirect_url
—send the user there to complete payment:
Try it out
Navigate to the returned redirect_url
and test with these cards:
- Success:
4242 4242 4242 4242
- Decline:
4000 0000 0000 9995
Congratulations!
You now have a basic checkout integration working 🎉
Fulfillment
Set up a webhook to fulfill orders after a payment succeeds.
Explore checkout session scenarios
Depending on your setup/business you may want to rely on additional parameters that are available as part of the Checkout Session API. Some of the common scenarios, can be found here.