#Carlos Mascarenhas - Invoice Events
1 messages · Page 1 of 1 (latest)
Carlos Mascarenhas - Invoice Events
Hey Carlos!
The subtle difference can be seen here: https://stripe.com/docs/api/events/types#event_types-invoice.paid vs https://stripe.com/docs/api/events/types#event_types-invoice.payment_succeeded
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The only difference is that invoice.paid also includes invoices marked as paid out-of-band
What would be out of band?
So out-of-band is if the payment if paid outside of Stripe somehow (like on another platform). If that were to occur, then you would have to manually mark the invoice as paid, which you can do through the dashboard or the API: https://stripe.com/docs/api/invoices/pay#pay_invoice-paid_out_of_band
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thanks!