#_Rick - payments
1 messages · Page 1 of 1 (latest)
What API was used to create these payments?
How were the payments created? Invoices, checkout, etc?
If you have an example charge ID we can track that down.
The charge is ch_3KHoYLJ3V3DV2HmE1EKlwQxH, was created via a payment link. I guess what I'm looking for eventually is the product list from a charge created by stripe checkout
Okay well the product list will be in the checkout session corresponding to that payment link
You can get there from Charge -> Payment Intent -> filter Checkout Session by Payment Intent. The product list will be on the checkout session's line items. You'll need to expand these as they are not sent by default.
https://stripe.com/docs/api/checkout/sessions/line_items
Oh awesome, I don't know how I missed that. Thanks 🙏