Is it possible to transfer an amount from one Connected-Account to another Connected-Account? both are connected under one Stripe account. I know i can split the transfer between both accounts like
$transfer = \Stripe\Transfer::create(array(
"amount" => 7000,
"currency" => "usd",
"destination" => "{CONNECTED_STRIPE_ACCOUNT_ID1}",
));
$transfer = \Stripe\Transfer::create(array(
"amount" => 2000,
"currency" => "usd",
"destination" => "{CONNECTED_STRIPE_ACCOUNT_ID2}",
));
But i want to transfer 9000 in 1st account and then from 1st Account to another. i had try to transfer using CONNECTED_STRIPE_ACCOUNT_ID1 secret key to transfer in CONNECTED_STRIPE_ACCOUNT_ID2 but got error like no such account available.
individual transfer are working perfect but want it from one account to another.
please Help.