#cory-connect
1 messages · Page 1 of 1 (latest)
hi there, your vendors getting the money within 24 hours of you sending it to their Stripe balance is not entirely correct - to some degree it would depend on country which your vendors are based in and how long it takes for funds to be paid out in that country
@undone lion thanks for starting a thread.
The bottom line with what I am trying to figure out is what level of status we can show our vendor users for each payment we send them.
Given that one payment entails many transactions
e.g.
1. Get money from our bank account into our Stripe balance
2. Send money from our Stripe Balance to the vendor's stripe balance
3. Have the Stripe payout go through which gets the vendor's Stripe Balance into their bank account
For each of the three steps above, are we able to pull status information on those transactions from the Stripe API? Are each of these transactions a different transaction type? I am trying to figure out where in the docs I can find this.
step 1 : https://stripe.com/docs/connect/top-ups - you can listen for topup.* events
step 2 : https://stripe.com/docs/api/transfers - there are no events for a Transfer. You would simply see if the API call to create a Transfer was successful
step 3 : you can listen for the payout.* webhook events here
list of events : https://stripe.com/docs/api/events/types
is the above information what you're looking for?