Using a coupon
A coupon is a discount code you type in when you pay, so you get money off your plan.
Why use it
If you have a promo code, entering it can lower what you pay. It only takes a few seconds and the new price shows up right away.
Step by step
Go to checkout
Pick the plan you want and head to the payment page.
Find the discount code box
On the payment page, look for the box that says you can enter a coupon or discount code.
Type your code and apply
Enter your code and click Apply. Your discount will show in the total.
Finish paying
Check the new price, then complete your payment as usual.
TIP
If your code does not work, double-check the spelling and try again. Spaces or extra characters can cause it to be rejected.
Good to know
- You can use one coupon per checkout. Codes do not combine with each other.
- Some codes only work for new sign-ups, renewals, or upgrades.
- A code may only work on certain plans, and some can only be used once per person.
- Codes can have a start and end date, so an expired code will not apply.
Related
For developers
Codes are checked via POST /api/v1/coupons/validate with { "code": "SPRING25" }. The code is normalized (uppercased, trimmed) and the response is either the matched coupon's discount or a structured error: expired, already_used, min_amount_not_met, or plan_not_allowed.
Coupons are issued from Coupons Admin. A coupon has a kind of percent, fixed, or trial_extension, with value, optional currency, applies_to (new / renewal / upgrade), allowed_plans (empty = all), usage_limit (0 = unlimited), single_use_per_user, optional valid_from / valid_until, and is_active. Coupons do not stack — one code per checkout.