#slowgen-payout-connect

1 messages · Page 1 of 1 (latest)

solemn anvil
#

yes, works

indigo gulch
#

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

solemn anvil
#

that yes

#

you pass the stripe_account param aka Stripe-Account header

indigo gulch
#

Cheers will give it a go, just didn't want it to go to the wrong account

solemn anvil
#

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

indigo gulch
#

That's reassuring thank you!

#

Is it possible to get balance transactions on manual payouts?

solemn anvil
#

you can yes, just that there's no link between what Payout <> BT

indigo gulch
#

Is there a way to view what transactions where included or parts of it? As a means of a statement for each payout

solemn anvil
#

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

indigo gulch
#

I see