#pro_professional
1 messages · Page 1 of 1 (latest)
👋 happy to help
in that case you should specify the source of the transfer
I'll send you the docs in a second
$stripe->transfers->create([
'amount' => 400,
'currency' => 'gbp',
'destination' => 'acct_1M4hRRQALh6pRnEc',
'transfer_group' => 'ORDER_95',
]);
yes im doing it
destination
i charged customer 600 Gbp and transferring 400 to connected account
the destination isn't the source_transaction
please read the doc I sent you for more info
Ok let me explain you whole process
we are doing product and subscription checkout all in one
But we only want to send subscription amount to connected account keeping the fee
@primal vault Sir If you can send me code that i should look as I m not able to fine source_transaction in whole document
"amount" => 1000,
"currency" => "eur",
"source_transaction" => "{CHARGE_ID}",
"destination" => "{{CONNECTED_STRIPE_ACCOUNT_ID}}",
]);```
this is from the code snippet in the URL I sent you above
thanks let me try that