#ahmedmohamed24

1 messages · Page 1 of 1 (latest)

coral houndBOT
rapid island
#

hello! I assume you're using destination charges?

elder saffron
#

yes I do

rapid island
#

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.

Learn how to customize the Express Dashboard for your users.

elder saffron
#

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

rapid island
#

this is still a destination transfer (just with OBO), you can still follow those instructions

elder saffron
#

ok I'm going to check it out

#

I've another problem in my organization account
our balance is going negative

rapid island
#

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