#mdcopley08
1 messages · Page 1 of 1 (latest)
Hi. You should be able to use source_transaction: https://stripe.com/docs/api/transfers/create#create_transfer-source_transaction
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Okay great, thank you! Now that I'm thinking about it more as well, there shouldn't be an issue creating a charge directly to the connected account right via something like Destination charges?
destination charges doesn't create a charge directly on the connect account. it settles funds on the platform first then transfers
You're thinking of direct charges, which are only recommended for standard accounts. Are you using standard accounts?
But if you aren't using standard accounts, I do recommend using destination charges instead of this separate charges and transfers flow if possible since it is a bit less work on your end
Okay sure, this is helpful - and we're currently using destination charges for all of our credit card processing, so if we can also do it for the ACH flow that would be great