#pentahombre-products
1 messages · Page 1 of 1 (latest)
So instead of the PaymentIntent event, you will want to listen to the checkout.session.completed event
From there you can retrieve the Checkout Session, expanding line_items (this is that in Python)
session_id,
expand=['line_items'])```
And that will have the product info
thank you!
Of course!