#nate-refund-events
1 messages · Page 1 of 1 (latest)
nate-refund-events
Hey @safe obsidian! That's a bit convoluted/confusing but that is expected. When you refund a Charge you get a charge.refunded Event.
The refund.created Event is a bit special and only used for "out of scheme refunds" for bank transfers. We are working on fixing this but for now charge.refunded is the right Event to listen to
Should I then really just look at the charge object records to determine refunds to customers, how much was refunded, and if the refund was successful? Also, is there a column on the charges object I can look at to determine if a refund was successful which looks like could take 5-10 days based on your documentation to determine that
You can use https://stripe.com/docs/api/refunds/list to list all Refunds for example after getting the charge.refunded Event yes
I can't tell you much about "columns". I'm a developer and help developers with their code
Sorry by columns I meant object attributes. Thanks @surreal mountain
ah in that case we have https://stripe.com/docs/api/charges/object#charge_object-amount_refunded
Great thank you!