#snows02
1 messages · Page 1 of 1 (latest)
When i say information i mean to name and email
What kind of information are you looking to retrieve?
Ah, got it
Is this a payment or subscription mode Checkout Session? If payment, are you creating a customer? https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-customer_creation
Yes the users have a customerId in stripe
👀
Hello! I'm taking over and catching up...
You can retrieve the Checkout Session from the API and from there find the details you're looking for on that object directly or on the associated objects: https://stripe.com/docs/api/checkout/sessions/object
@warm dagger ty man, but one more question How I can filter by specific product ?
Can you provide more details? Not sure I understand.
I want to obtain the information of the users (Name and email) who have purchased a specific product (this product exists in stripe)
That's not something we provide out of the box as far as I know. You would need to write code to list all Checkout Sessions using the API, obtain the relevant info, put it into a database or data store of some kind, then query what you want from there.