#activ-checkout-questions
1 messages · Page 1 of 1 (latest)
Hello 👋
I'd like to implement discount codes that I could send in emails or hand over to some individuals. From what I see, this is not possible with paymentIntent. Do you have any suggestion for me how to accomplish this?
Correct, the PaymentIntents API currently doesn't support coupons/promo codes
I see that stripe has possibility to issue Invoices. I actually look for feature like this, but I'd like to issue and send it to the customer after the successful payment. Is that possible? That's something that's legally required in Poland where I run the business.
Post payment invoices are only supported via Stripe Checkout. This isn't currently possible with PaymentIntents.
You can create a one-off invoice after the payment and mark it as paid manually OR create an invoce prior to the payment.
Would you suggest that I migrate to Stripe checkout? Is it solution that will enable me to also process subscriptions later on?
Yes, Stripe Checkout would allow you to create subscriptions as well as discounts with promotion codes
Not sure tbh
You can run a quick test to see if it localizes in Polish
Here are the docs you can use for:
One time payments with checkout - https://stripe.com/docs/payments/accept-a-payment
Discounts for one-time payments - https://stripe.com/docs/payments/checkout/discounts
Subscriptions with checkout - https://stripe.com/docs/billing/subscriptions/build-subscriptions
Discounts for subscriptions in checkout - https://stripe.com/docs/billing/subscriptions/coupons
activ-checkout-questions