#NotP_Dot
1 messages · Page 1 of 1 (latest)
are you doing one time payments?
it could be either one time or subscriptions
- for one time payment I am using - stripe.PaymentIntent.create
- for subscriptions I am using - stripe.Subscription.create
if that helps
so PaymentIntents do not support Discounts/Coupons
Subscription do
so for PaymentIntents, you have to do your own calculation for amount - discount == new amount
and use your own Coupon codes, the ones from Stripe only work on Checkout and Subscription
ahhh bummer, okay thank you I will do that