#bruce17
1 messages · Page 1 of 1 (latest)
I've tried the payments intent and balance transaction methods
but they return alot of information that I don't necessarily need
Is there a simple way to call something that just gives me all the successful payments that have come in?
Hi, to confirm, are you just trying to get the successful charges of the payments made on the your Connected Accounts? Or something else?
yesss exactly
You can set up Connect Webhooks, https://stripe.com/docs/connect/webhooks to listen to charge.suceeded event, https://stripe.com/docs/api/events/types#event_types-charge.succeeded.
okay amazing, so what about for all the historic successfull charges?
You can list all of the charges, https://stripe.com/docs/api/charges/list and look at the status with succeeded to find these.
Let me know if you have any follow up questions.