Billing and subscriptions
SREDSimplify uses Stripe for recurring subscriptions and project-scoped expert review purchases.
Membership tiers
The currently documented membership tiers are:
FREESTARTERPROFESSIONALENTERPRISE
The live pricing and availability of purchasable plans come from the public pricing catalog and current billing configuration rather than from a hard-coded docs table.
Subscription flow
A normal subscription path looks like this:
- Review the available paid tier in the product pricing or billing surface.
- Start a Stripe Checkout session for that tier.
- Complete payment in Stripe.
- Return to the application and let the billing state synchronize.
Important current rules:
FREEis not a purchasable tier- a plan must be active and purchasable in billing configuration before checkout can start
Customer portal
For ongoing subscription management, the application can create a Stripe customer portal session. Use this when you need to:
- update billing details
- inspect the Stripe-managed subscription state
- manage subscription changes handled through the customer portal flow
Expert review orders
Expert review is a one-time paid workflow tied to a specific project.
The current user-facing path is:
- Choose a project.
- Start expert review checkout.
- Complete payment in Stripe.
- Track the order from the application.
Current order status values:
PENDING_PAYMENTPAIDIN_REVIEWCOMPLETEDCANCELED
Pricing and status sources of truth
Use these sources when you need exact live detail:
- pricing and offering shape: Public entry points
- API contract and Stripe callbacks: Billing and Stripe
This page intentionally avoids duplicating raw endpoint or event detail.