#NotP_Dot

1 messages · Page 1 of 1 (latest)

summer inletBOT
stoic bronze
#

are you doing one time payments?

naive elk
#

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

stoic bronze
#

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

naive elk
#

ahhh bummer, okay thank you I will do that