#1stopainz
1 messages · Page 1 of 1 (latest)
Hello 1stopainz, we'll be with you shortly! Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
• 1stopainz, 3 days ago, 49 messages
• 1stopainz, 4 days ago, 3 messages
• 1stopainz, 4 days ago, 25 messages
• 1stopainz, 5 days ago, 18 messages
👋 happy to help
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Given this checkout session id
cs_test_a1e0EUKKKjniT0aGTRunXDkN5rCu9BLpoYKkmO2GENPlMd4uNcgytTkTh0
How can I trace back to what product(s) was sold in that session
I have seen this in the docs but I m quite unsure how can I list the products bought in that session?
you can retrieve the checkout session https://stripe.com/docs/api/checkout/sessions/retrieve
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
using the ID
and then go through the line items data array
and you can see the prices/products
there's a good guide that explains this https://dev.to/stripe/purchase-fulfilment-with-checkout-or-wait-what-was-i-paid-for-335d
how can I expand items using curl?