#slowgen-payout-connect
1 messages · Page 1 of 1 (latest)
will this be the syntax:
$stripe->payouts->create([ 'amount' => $amount, 'currency' => 'gbp', 'method' => 'standard' ], [ 'stripe_account' => $acc, ]);
or which property to pass the connected account
Cheers will give it a go, just didn't want it to go to the wrong account
it cannot go to the wrong account, a payout only moves funds from a Connect acct's Balance to its bank account
it doesn't move funds from acct_A to acct_B
That's reassuring thank you!
Is it possible to get balance transactions on manual payouts?
you can yes, just that there's no link between what Payout <> BT
Is there a way to view what transactions where included or parts of it? As a means of a statement for each payout
no as that would be under your application's control
e.g. with manual payouts, you create a Charge for $40 and one for $60
then you pay out manually $30, where did the $30 come from? some part of $40 Charge? $60 Charge? both? Stripe doesn't know, this is your code to track
I see