#taysonvo
1 messages · Page 1 of 1 (latest)
Hi there, a coupon is a merchant-facing discount code, it means only merchant (e.g., you) can apply coupon to invoice subscription or even customer
a promo code is a customer-facing discount code. Your customer can use a promo code during checkout to enjoy a discount.
Thanks for your quick response !.
To use the Promo Code, customer have to use the checkout form of Stripe, right ?
Because my flow is customer using a custom checkout, by the end, it will collect what customer selected to create an invoice on Stripe and customer will be charged by this invoice.
I don't see any place that I can put the Promotion code to the Invoice...only see Coupon
@slow dawn
No, your customer can't use promo code in hosted invoice page.
So the Promo Code can be used on the Checkout Portal page on Stripe only, right ?
Yes, your customer can use promo code in checkout page if the checkout session allows it (https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-allow_promotion_codes)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So my business flow cannot apply the Promotion Code...can only use the Coupon code only, I think
What's your biz flow?
it was a monthly flow and we created Subscription on Stripe...and charge customer via monthly invoice.
later we can have one-time buying, but it will still using invoice...not checkout session
OK. Then you can just create a coupon and apply it to the invoice
I got it, thanks for your support!