#nachomahn
1 messages · Page 1 of 1 (latest)
Are you looking for a list of event types like in our API reference? Or are you trying to list out event IDs for events you have already received?
https://stripe.com/docs/api/events/types
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Unfortunately there is not a direct way to list them via the API but the Customer's page on your dashboard should show a list of related events
Right now I'm trying to get a list of events for a customer and determine if it would be easier to use those events or invoices to determine how long that customer has not paid.
E.g. I am creating a payment intent and after I create an intent I want to find out how much will be stripe fee before I get call stripe.paymentIntents.capture
Heads up, wrong thread @covert thicket , we can talk in this thread https://discord.com/channels/841573134531821608/1154073396104155206
Sorry
@violet fog it would likely be easier to list their invoices and see the last date on an invoice that was paid successfully. Our list invoices endpoint lets you filter by customer and status so you can look for just paid invoices for a certain customer https://stripe.com/docs/api/invoices/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Cool that was the feeling that I got.