#ahmedmohamed24
1 messages · Page 1 of 1 (latest)
hello! I assume you're using destination charges?
yes I do
you might want to take a look at this section : https://stripe.com/docs/connect/customize-express-dashboard#destination-charges. Basically, the destination_payment is the py object which you see on the User dashboard.
If you want to easily find the PaymentIntent from the py object though, i would suggest either updating the metadata / description on the py object to reflect the PaymentIntent id. Note : If you want the description in the Express Dashboard to reflect what you updated, you need to reach out to Stripe Support to enable custom descriptions for your platform.
great
thank you
sorry, i think there is a misunderstanding
I'm using payment_intent_data, on_behalf_of, and transfer_data
I'm not using destination
'success_url' => route('web.booking.success.payment').'?session_id={CHECKOUT_SESSION_ID}',
'line_items' => $items,
'invoice_creation' => [
'enabled' => true,
],
'payment_intent_data' => [
'application_fee_amount' => $this->getApplicationFee($bookingOrder, $paidTickets),
'on_behalf_of' => $bookingOwnerAccount,
'transfer_data' => [
'destination' => $bookingOwnerAccount,
],
],
'mode' => 'payment',
'currency' => $currency,
'metadata' => ['bookingOrderId' => $bookingOrder->id],
'customer_email' => request()->user()?->email,
'submit_type' => 'book',
]);
there is my checkout code
this is still a destination transfer (just with OBO), you can still follow those instructions
ok I'm going to check it out
I've another problem in my organization account
our balance is going negative
you'll want to reach out to Stripe Support - https://support.stripe.com/contact about that, they'll be able to advise you better than we can. We mainly help with developers who want to integrate directly with the Stripe API here on this channel
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.