#ashish846955
1 messages · Page 1 of 1 (latest)
Can you share an example Payment Intent ID (pi_xxx)?
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,
]);
I see that the description was set on Transfer object in https://dashboard.stripe.com/test/logs/req_gGShifyJlg9s2q
Stripe doesn't populate the description from transfer object to py_xxx object
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Why do you manual transfer to Standard connected account? For Standard connected account, Separate Charges and Transfers is not recommended
Standard connected account should use Direct Charges instead: https://stripe.com/docs/connect/direct-charges
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
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
If I get 100+ orders daily, I can't set in each order
I'm afraid there is no other way. It can only be updated in each charge (py_xxx) object via API