#ashish846955

1 messages · Page 1 of 1 (latest)

cloud cobaltBOT
teal cape
#

Can you share an example Payment Intent ID (pi_xxx)?

tacit ether
#

Please check my screenshot!
above screenshot is main acount

#

this is my second account

#

py_1NgMYYJp8Td6YV2iQlBlDtgR

#

I have use above code
$temp_arr = \Stripe\Transfer::create([
'amount' => $total_amt,
'currency' => 'usd',
'source_transaction' => $charge->id,
'destination' => $splitAccounts[$index],
'description' => $fds,

                            ]);
teal cape
#

Why do you manual transfer to Standard connected account? For Standard connected account, Separate Charges and Transfers is not recommended

tacit ether
#

Why do you manual transfer to Standard connected account? For Standard connected account, Separate Charges and Transfers is not recommended
=> This is my plugin functionality so i have use this

#

Stripe doesn't populate the description from transfer object to py_xxx object
=> Why

teal cape
#

Since the description is on the Transfer object, it may not be the same as the Payment object on the connected account. You would need to manually update description of the py_xxx object

tacit ether
#

If I get 100+ orders daily, I can't set in each order

teal cape
#

I'm afraid there is no other way. It can only be updated in each charge (py_xxx) object via API