#olli-checkout-line-items
1 messages ยท Page 1 of 1 (latest)
Hi there ๐ line_items aren't included in the event body, but you can either retrieve the checkout session using expand to return the line_items:
https://stripe.com/docs/api/checkout/sessions/retrieve
Or, if you only need information about the line items, then you can retrieve just those for a session:
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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ah, thanks. it works now :)