#metamike8438
1 messages · Page 1 of 1 (latest)
Hello! Give me a minute to help a couple of other folks and i'll be right iwth you
sure, waiting
Just to clarify - transfers and payouts are two completely separate things. Do you just want to know when the transfer from your platform -> to the connected accoutn is successful?
Payouts => self
Transfers => Other connected accounts
Am i right? if yes then
I want to know when the transfer from your platform -> to the connected accoutn is successful
Payouts => moving money from a stripe account to an external account (both the platform, and connected accounts can have payouts)
Tranfsers => Moving money from one stripe account to another
But here in this API doc, https://stripe.com/docs/api/payouts/create it says differently
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Am i missing anything?
Yeah but you can use the Payouts API + the Stripe-Account header to make a payout for your connected accounts
If you're just trying to know when a Transfer is successful, we don't have an event for that because if the trasnfers creation request was successful then that means it worked
can transfers be reversable, if yes do we have an event for it?
Is there any good docs for it to refer
This doc shows how you'd create payouts manually for your connected accounts: https://stripe.com/docs/connect/manual-payouts#regular-payouts
Yes, it's possible to reverse transfers (with some caveats):
https://stripe.com/docs/api/transfer_reversals
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But im again worried about it like how webhooks works for connected account
This is what the transfer.reversed event is for
https://stripe.com/docs/api/events/types#event_types-transfer.reversed
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
What are you trying to do? What are you worried about with conencted account webhooks?
If i use this https://stripe.com/docs/connect/manual-payouts#regular-payouts then should i need to create a Account webhooks or Connect webhooks, could you confirm this it will solve my problem
there?