#andygee
1 messages · Page 1 of 1 (latest)
The line_items field is not included by default in the event (it's what we call 'expandable': https://stripe.com/docs/api/expanding_objects)
You'll need to make an additional API call: https://stripe.com/docs/api/checkout/sessions/line_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you can also read https://dev.to/stripe/purchase-fulfilment-with-checkout-or-wait-what-was-i-paid-for-335d which has good information on this
Great, thanks!