#sayori-invoice-refund
1 messages · Page 1 of 1 (latest)
An Invoice has a charge property which is a Charge object and that one has a refunds collection
so you can go from Invoice to the Charge to its refund(s). You can retrieve the Invoice via https://stripe.com/docs/api/invoices/retrieve and expand the underlying charge (https://stripe.com/docs/expand) that would retrieve the entire charge and its refund too
thanks! didn't think about going through the Charge object, this works for me