#ziminny-paymentintent-invoice

1 messages · Page 1 of 1 (latest)

broken barn
#

Which will be the ID of the associated PaymentIntent

sage sky
#

this would be my payment , I wanted to associate it with an invoice , I could not find a flow that would show me

#

const paymentIntent = await stripe.paymentIntents.create({ amount: price, currency: 'eur', payment_method_types: ['card'], customer:customerId, metadata: { productId, userId, checkins, order } });

#

when I have a subscription everything is done automatically , but from what I understand the payment intent is not like that

broken barn
#

PaymentIntents themselves to not make Invoices

#

Subscriptions create Invoices with PaymentIntents

#

So PaymentIntents that are not from a Subscription will not have them

sage sky
#

ok